ForgeOps Helm Repository

Please refer to the ForgeOps official documentation for the latest and most up to date installation documentation: https://docs.pingidentity.com/forgeops/

Below is a quick overview of the helm installation process using this helm repository.

Identity platform install

In order to deploy the identity platform, simply execute helm with the desired options. Example:


$ kubectl create namespace identity-platform
$ helm upgrade identity-platform identity-platform \
    --repo https://ForgeRock.github.io/forgeops/ \
    --version 2026.2.0 --namespace identity-platform --install \
    -f values-override.yaml

The above example installs version 2026.2.0 of the Helm chart from the repository.

The next example will deploy the identity platform while using the command line to set the host and TLS settings for the ingress:


$ kubectl create namespace identity-platform
$ helm upgrade identity-platform identity-platform \
    --repo https://ForgeRock.github.io/forgeops/ \
    --version 2026.2.0 --namespace identity-platform --install \
    --set platform.ingress.hosts={identity-platform.domain.local} \
    --set platform.ingress.tls.issuer.name=identity-platform-issuer \
    --set platform.ingress.tls.issuer.kind=Issuer \
    --set platform.ingress.tls.issuer.create.type=letsencrypt-prod \
    --set platform.ingress.tls.issuer.create.email=address@domain.com

Identity platform uninstall


$ helm delete identity-platform -n identity-platform

Ping Gateway install

In order to deploy the Ping Gateway, simply execute helm with the desired options. Example:


$ helm upgrade ping-gateway ping-gateway \
    --repo https://ForgeRock.github.io/forgeops/ \
    --version 2026.2.0 --namespace identity-platform --install \
    -f values-override.yaml

Ping Gateway uninstall


$ helm delete ping-gateway -n identity-platform