helm 查看repo 下载 推送等所有的操作请写出实例。
- 查看已有的repo
helm repo list
- 添加repo
helm repo add <repo-name> <repo-url>
- 更新repo
helm repo update
- 搜索repo中的chart
helm search repo <chart-name>
- 下载chart
helm pull <repo-name>/<chart-name>
- 安装chart
helm install <release-name> <repo-name>/<chart-name>
- 卸载chart
helm uninstall <release-name>
- 更新已安装的chart
helm upgrade <release-name> <repo-name>/<chart-name>
- 查看已安装的chart
helm list
- 推送chart到私有repo
helm push <chart-directory> <repo-name>
原文地址: https://www.cveoy.top/t/topic/b1rL 著作权归作者所有。请勿转载和采集!