# 下载,安装
wget https://get.helm.sh/helm-v3.4.2-linux-amd64.tar.gz
tar -zxvf helm-v3.4.2-linux-amd64.tar.gz
mv linux-amd64/helm /usr/local/bin/helm
# 查看版本
helm version
helm repo add stable https://apphub.aliyuncs.com
helm repo list
# 添加自建的 chartmuseum 仓库, 自建 chartmuseum 可参考 https://www.cnblogs.com/klvchen/p/13608804.html
helm repo add chartmuseum http://192.168.0.200:82
helm repo ls
# 创建自定义 chart
helm create yp-flask
# 测试
helm lint yp-flask
helm template yp-flask
# 打包
helm package yp-flask
# 上传
curl --data-binary "@yp-flask-0.1.0.tgz" http://192.168.0.200:82/api/charts
# 更新 repo
helm repo update
helm search repo chartmuseum
# 下载
curl -O http://192.168.0.200:82/charts/yp-flask-0.1.0.tgz
# 删除一个chart版本
curl -s -X DELETE http://192.168.0.200:82/api/charts/yp-flask/0.1.0
# 查看所有 chart
curl http://192.168.0.200:82/index.yaml
# 获取指定chart的依赖列表。
helm dependency list
# 根据requirements.yaml文件内容更新charts目录
helm dependency update