A Helm chart repo
helm repo add mkretz https://mkretz.github.com/helmcharts
Let's take the notification-k8s submodule as an example
- Pull the latest changes of the submodule:
cd notification-k8s
git pull
- Package the helm chart
helm package notification-k8s
- Move the packaged chart to the docs directory
mv notification-k8s-x.y.z.tgz docs
- Rebuild the repo index
helm repo index docs --url https://mkretz.github.com/helmcharts
- Push the changes
git add .
git commit -m "New version of notification-k8s"
git push