1、添加仓库地址
helm repo add [仓库命名] [仓库地址]
helm repo add traefik https://containous.github.io/traefik-helm-chart
2、更新仓库
helm repo update
3、列出有哪些仓库
helm repo list
4、查看哪些pod是helm部署的
helm ls
5、卸载helm部署的资源
helm uninstall
6、下载chart tgz包
helm pull [repo_name]/[path_to_chart]
helm pull traefik/traefik
7、创建chart demo
helm create template-chart
8、查看values yaml
helm show values traefik/traefik
9、helm部署资源
helm install traefik traefik/traefik --set xxx=xxx --set xxx=xxx
PS -> 查看helm更多用法请执行: helm --help