# 渲染模板查看输出
helm template ai-fe ./helm
# 验证语法
helm lint ./helm
# 安装到集群
helm install ai-fe ./helm -n ai-dev
# 使用自定义值安装
helm install ai-fe ./helm -n ai-dev \
--set image.tag=0.0.4 \
--set replicaCount=2
# 升级
helm upgrade ai-fe ./helm -n ai-dev
# 卸载
helm uninstall ai-fe -n ai-dev