Maintains the Helm packages of gate-sso.
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
- Clone repo
https://github.com/gate-sso/helm-charts
. - Go to
stable/gate
folder. - 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.tgz
to this repo. - Execute
$ helm repo index . --url https://gate-sso.github.io/helm-packages
, this will update theindex.yaml
file. - Commit and push changes from both repo.