外观
Helm
约 120 字小于 1 分钟
2025-02-20
安装helm
使用官方脚本安装
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
验证安装
helm version
Helm常用命令
配置Helm命令自动补全
source <(helm completion bash)
echo "source <(helm completion bash)" >> ~/.bashrc
添加仓库
helm repo add http/https://
创建Chart
helm create xxxx
检查chart
helm lint .
安装chart
helm install xxxx .
查看已安装的chart
helm list
删除已安装的chart
helm delete xxx