helm 安装及使用
环境信息
- centos7 5.4.212-1.el7
- kubernetes Server Version: v1.25.0
- Helm 3.10.0
安装
下载 需要的版本
wget https://get.helm.sh/helm-v3.10.0-linux-amd64.tar.gz
解压
tar -xf helm-v3.10.0-linux-amd64.tar.gz
在解压目中找到
helm
程序,移动到需要的目录中cp linux-amd64/helm /usr/local/bin/
验证
$ helm version
version.BuildInfo{Version:"v3.10.0", GitCommit:"ce66412a723e4d89555dc67217607c6579ffcb21", GitTreeState:"clean", GoVersion:"go1.18.6"}
常见用法
查看已安装的 release
helm ls |
卸载
helm ls -A |
查看导入的 repo
helm repo ls |
搜索/查看可用的 repo
helm search repo hashicorp/vault |
查看可用的 releases
helm search repo hashicorp/vault -l |
安装
helm install vault hashicorp/vault --version 0.25.0 |