Helm介绍
Install Helm
https://helm.sh/docs/intro/install/
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
初始化Chart仓库
helm repo add stable https://charts.helm.sh/stable
helm search repo mysql
helm search hub mysql
官方文档
创建Chart
helm create deis-workflow
helm package deis-workflow
helm install deis-workflow ./deis-workflow-0.1.0.tgz
常用命令
helm install -f config.yaml stable/mariadb --generate-name
helm upgrade -f panda.yaml happy-panda stable/mariadb
helm get values happy-panda
# helm rollback [RELEASE] [REVISION]
# helm history [RELEASE]
helm rollback happy-panda 1
helm uninstall happy-panda
helm list
helm repo list