helm 安装

本页内容

helm 安装

脚本安装

1curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
2chmod 700 get_helm.sh
3./get_helm.sh
4
5#或者可以使用这个命令
6curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
7
8helm help

二进制安装

1wget https://get.helm.sh/helm-v3.7.2-linux-amd64.tar.gz
2tar -zxvf helm-v3.7.2-linux-amd64.tar.gz
3cd helm-v3.7.2-linux-amd64
4mv linux-amd64/helm /usr/local/bin/helm
5helm help