helm repository, which url is : https://winterofmaple2016.github.io/helm-chart/
i.g helm create test
or copy your existing app/service Helm chart inside the helm-chart
helm lint helm(file name)
i.g
mkdir docs
helm package test -d docs/
i.g helm repo index https://winterofmaple2016.github.io/helm-chart/ .
Note:
if you make any further changes in the Helm cahrt. you must regennerate the index.yaml
file and the .tgz file with the latest changes
helm repo index --url https://winterofmaple2016.github.io/helm-chart/ --merge index.yaml .
git status
git add .
git commit -m "you_commit_message"
git push
setting => Pages => Build and deployment =》
Source:Deploy from a branch
Branch: target branch: docs
save it
helm repo add my-repo https://winterofmaple2016.github.io/helm-chart
helm install <release> myrepo/test -n <namespace>