helm的更新部署命令
helm list -n test
查看test 空间下有那些helm安装的程序
helm uninstall -n test mysql
卸载mysql
helm -n test install mysql ./mysql -f ./mysql/values.yaml --debug --dry-run
安装mysql
helm -n test upgrade mysql ./mysql -f ./mysql/values.yaml --debug --dry-run
更新mysql
helm package . --version=v1.1
将helm部署的char打包