helm
helm
helm相当于kubernetes中的yum。包管理下载
官方下载
官网:
https://helm.sh/zh/
github下载:
https://github.com/helm/helm/releases
找linux amd64,右键复制链接。wget下载
https://get.helm.sh/helm-v3.7.1-linux-amd64.tar.gz
安装
[root@sg-14 helm]# tar -xf helm-v3.7.1-linux-amd64.tar.gz
[root@sg-14 helm]# cd linux-amd64/
[root@sg-14 linux-amd64]# for i in sg-14 sg-15 sg-16;do scp helm root@$i:/usr/local/bin; done
[root@sg-14 helm]# helm version
version.BuildInfo{Version:"v3.7.1", GitCommit:"1d11fcb5d3f3bf00dbe6fe31b8412839a96b3dc4", GitTreeState:"clean", GoVersion:"go1.16.9"}
查看helm参数
helm install -h
helm repo list // 查看repo列表
helm install nfs-client --set nfs.server=192.168.0.214 --set nfs.path=/nfs/v6 ckotzbauer/nfs-client-provisioner
选择了IT,必定终身学习