helm3安装部署

参考链接:https://www.jianshu.com/p/6907fc806b75

一、安装篇

1.helm包下载地址:

wget https://get.helm.sh/helm-v3.6.1-linux-amd64.tar.gz

2.解压 && 移动到 /usr/bin 目录下:

tar -xvf helm-v3.6.1-linux-amd64.tar.gz && cd linux-amd64/ && mv helm /usr/bin

3.执行 helm 显示如下说明安装成功:

#查看版本

helm version

二、配置篇

授权

chmod g-rw ~/.kube/config

chmod o-r ~/.kube/config

仓库配置

helm repo add elastic https://helm.elastic.co

helm repo add  gitlab    https://charts.gitlab.io     

helm repo add  harbor    https://helm.goharbor.io     

helm repo add  bitnami    https://charts.bitnami.com/bitnami     

helm repo add  incubator  https://kubernetes-charts-incubator.storage.googleapis.com   

# 添加国内仓库

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

helm repo add aliyun https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts     

#更新repo仓库资源

helm repo update   

#查看添加的repo仓库 

helm repo list     

你可能感兴趣的:(helm3安装部署)