Press "Enter" to skip to content

「helm」基本使用

  • 安装 helm
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
  • 查看版本

helm version

  • 使用本地仓库
# 添加仓库
helm repo add bitnami https://charts.bitnami.com/bitnami
# 更新仓库
helm repo update
# 查看所有本地仓库
helm repo list
# 在仓库中搜索
helm search repo nginx