ForgeOps

Deploy PingGateway

ForgeOps deployments don’t include PingGateway by default.

To deploy PingGateway after you have performed a ForgeOps deployment:

  1. Verify that the ForgeOps deployment is up and running.

  2. Set the active namespace in your local Kubernetes context to the namespace in which you have deployed the platform components.

  3. Add the - ./ig line in the default overlay file, kustomize/overlay/my-env/kustomization.yaml:

    kind: Kustomization
    apiVersion: kustomize.config.k8s.io/v1beta1
    resources:
    - ./base
    - ./secrets
    - ./ds-cts
    - ./ds-idrepo
    - ./am
    - ./amster
    - ./idm
    - ./ig
    - ./ldif-importer
    - ./admin-ui
    - ./end-user-ui
    - ./login-ui
  4. Add PingGateway Docker image to your ForgeOps deployment configuration:

    $ cd /path/to/forgeops/bin/
    $ ./forgeops image --release 2024.11.0 ig --env-name my-env
  5. Deploy PingGateway:

    1. In a Kustomize-based deployment:

      $ /path/to/forgeops/bin/forgeops apply --env-name my-env ig
    2. In a Helm-based deployment:

      $ cd /path/to/forgeops/charts/identity-platform
      $ helm upgrade --install identity-platform ./ \
       --version 2025.1.1 --namespace my-namespace \
       --values /path/to/forgeops/helm/my-env/values.yaml
  6. Run the kubectl get pods command to check the status of the PingGateway pod. Wait until the pod is ready before proceeding to the next step.

  7. Verify that PingGateway is running:

    $ curl --insecure -L -X GET https://my-fqdn/ig/openig/ping -v
    
    ...
    > GET /ig/openig/ping HTTP/2
    > Host: my-fqdn
    > User-Agent: curl/7.64.1
    > Accept: /
    * Connection state changed (MAX_CONCURRENT_STREAMS == 128)!
    < HTTP/2 200
    < date: Thu, 29 Jul 2021 21:07:44 GMT
    <
    * Connection #0 to host my-fqdn left intact
    * Closing connection 0
  8. Verify that the reverse proxy to the IDM pod is running:

    $ curl --insecure -L -X GET https://my-fqdn/ig/openidm/info/ping -v
    ...
    * Using HTTP2, server supports multi-use
    * Connection state changed (HTTP/2 confirmed)
    * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
    ...
    * Connection state changed (MAX_CONCURRENT_STREAMS == 128)!
    < HTTP/2 200
    ...