部署
helm install polaris-controller .
更新
helm upgrade -i polaris-controller .
查看部署列表
helm list
卸载
helm uninstall polaris-controller
调试
验证语法
helm lint
生成yaml
helm install --generate-name --dry-run --debug . > dry-run-debug.tmp.yaml
- 在本地测试渲染chart模板
helm template --debug . > template-debug.tmp.yaml
- 清理yaml
rm *.tmp.yaml
Ref
https://helm.sh/zh/docs/helm/helm/
标签:tmp,yaml,--,debug,controller,helm,相关 From: https://www.cnblogs.com/peerless1024/p/18589318