1、安装helm
wget https://get.helm.sh/helm-v3.6.3-linux-amd64.tar.gz
tar xf helm-v3.6.3-linux-amd64.tar.gz
cp -a linux-amd64/helm /usr/local/bin
chmod +x /usr/local/bin/helm
helm version
2、添加chart源
helm repo add aliyuncs https://apphub.aliyuncs.com
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update
helm repo list
3、查找安装程序
helm search repo nginx
helm install nginx aliyuncs/nginx
4、查询当前列表
helm list
helm uninstall nginx