安装helm

发布时间 2023-09-23 10:14:34作者: linjiangCN

1、下载

curl -SLO https://get.helm.sh/helm-v3.7.1-linux-amd64.tar.gz

2、解压

tar -zxvf  helm-v3.7.1-linux-amd64.tar.gz

3、将helm移至 /bin 目录

mv  linux-amd64/helm  /usr/local/bin/helm

4、查看版本号

helm version

5、添加国内 阿里云的 镜像源

helm repo remove stable
helm repo add stable http://mirror.azure.cn/kubernetes/charts/
helm repo update

6、添加azure的源

helm repo remove stable

helm repo add stable http://mirror.azure.cn/kubernetes/charts/

helm repo add incubator http://mirror.azure.cn/kubernetes/charts-incubator/

helm repo update