Skip to content

Using a github repo as a helm repo

YaraMohammed edited this page May 8, 2018 · 2 revisions

Using a github repo as a helm repo

clone you REPO and package the charts

$ 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

To add any new chart or update chart

$ 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

For using the chart

$ helm repo add REPO_NAME https://[email protected]/USER/REPO/BRANCH
$ helm repo update
Clone this wiki locally