Custom PingGateway image
The default PingGateway configuration provided for use with ForgeOps deployments is an example. Replace this configuration with your own routes before using PingGateway in your environment.
Refer to the PingGateway Deployment Guide for configuring routes.
To build a custom PingGateway image and deploy PingGateway:
-
Verify that you have already set up ForgeOps deployment environment using the forgeops env command.
-
Verify that your ForgeOps deployment is up and running.
-
Configure PingGateway by creating, modifying, or deleting rules in the /path/to/forgeops/docker/ig/config-profiles/my-profile/config/routes-service directory.
-
Identify the repository to which you’ll push the Docker image. You’ll use this location in the next step to specify the --push-to argument’s value.
-
Build a new
ig
image that includes your changes to PingGateway static configuration:$ cd /path/to/forgeops/bin* ... $ forgeops image --release 2024.11.0 --release-name my-ig-release ig ... $ ./forgeops build ig --env-name my-env \ --config-profile my-profile --push-to my-repo
-
If PingGateway hadn’t already been deployed in the existing ForgeOps deployment, 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
-
Uninstall previously deployed PingGateway from your ForgeOps deployment:
-
Set the active namespace in your local Kubernetes context to the namespace in which you have deployed the PingGateway.
-
Delete PingGateway:
$ ./forgeops delete --env-name my-env ig ... secret "openig-secrets-env" deleted service "ig" deleted deployment.apps "ig" deleted
-
-
Deploy PingGateway using your customized PingGateway image:
-
In a Kustomize-based deployment:
$ /path/to/forgeops/bin/forgeops apply --env-name my-env ig
-
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
-
-
Run the kubectl get pods command to check the status of the PingGateway pod. Wait until the PingGateway pod is ready before proceeding to the next step.
-
Verify that your PingGateway routes work.