Gate Helm Packages
Maintains the Helm packages of gate-sso.
Using the Packages
Add packages repo in Helm:
$ helm repo add gate-sso https://gate-sso.github.io/helm-packages
Install gate package with release name my-gate:
$ helm install --name my-gate gate-sso/gate
To use custom setting please create my-values.yaml according to configuration then use this command:
$ helm install --name my-gate --values my-values.yaml gate-sso/gate
Adding New Package
- Clone repo
https://github.com/gate-sso/helm-charts. - Go to
stable/gatefolder. - Update the chart and app version in
Chart.yaml. - Update image tag in
values.yaml. - Execute
$ helm package ., this will create filegate-x.y.z.tgz, where x, y, z are the new version number that automatically generated from step 3. - Move
gate-x.y.z.tgzto this repo. - Execute
$ helm repo index . --url https://gate-sso.github.io/helm-packages, this will update theindex.yamlfile. - Commit and push changes from both repo.