Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 740 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 740 Bytes

1) Copy new helm-chart into helm-chart-sources directory

2) Lint

helm lint helm-chart-sources/*

3) Package

helm package helm-chart-sources/*

4) Index

helm repo index --url https://shay79il.github.io/helm-chart/ --merge index.yaml .

5) Commit changes to repo

git add . && git commit -m “Upgrade charts” && git push origin master

6) Configure helm client

helm repo add <repo-name> https://<username>.github.io/helm-chart/

7) Upgrade changes to repo

helm upgrade -i <release-name> <repo-name>/<helm-chart-name>