helm create demo-chart
helm package demo-chart
helm repo index --url https://git1e.github.io/helm-chart/ .
cp -a demo-chart demo-chart-0.1.1
cd demo-chart-0.1.1/
# 修改版本号
vim Chart.yaml
# 打包chart
helm package demo-chart-0.1.1/
# 添加描述文件 index.yaml
helm repo index --url https://git1e.github.io/helm-chart/ .
helm repo add myrepo https://git1e.github.io/helm-chart/
helm search repo demo-chart