-
Notifications
You must be signed in to change notification settings - Fork 0
Using a github repo as a helm repo
YaraMohammed edited this page May 8, 2018
·
2 revisions
$ cd $REPO_PATH
$ helm package $YOUR_CHART_PATH/
$ helm repo index --url https://[email protected]/USER/REPO/BRANCH .
$ git add .
$ git commit -m 'adding helm repo'
$ git push
$ helm package $YOUR_CHART_PATH/
$ helm repo index --url https://[email protected]/USER/REPO/BRANCH .
$ git add .
$ git commit -m 'New chart version'
$ git push
$ helm repo add REPO_NAME https://[email protected]/USER/REPO/BRANCH
$ helm repo update