# 先移除原先的仓库
helm repo remove stable
# 添加新的仓库地址
helm repo add stable https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
# 更新仓库
helm repo update
helm search
helm repo update
- 安装charts
Monocular是一个开源软件,用于管理kubernetes上以Helm Charts形式创建的服务,可以通过它的web页面来安装helm Charts
# 安装Nginx Ingress controller,安装的k8s集群启用了RBAC,则一定要加rbac.create=true参数
helm install stable/nginx-ingress --set controller.hostNetwork=true,rbac.create=true
# 安装monocular
helm repo add monocular https://helm.github.io/monocular
helm install --name monocular --namesapce monocular monocular/monocular
helm list
helm delete kubeapps
# 上述虽然删除了,但是还能够使用这个命令查看到:helm ls --all
# 上述删除,但是名称还在,状态是DELETED,若添加同名的release,则需要使用下面这个命令彻底删除
# 删除的话也能查看到详情信息
helm status kubeapps
# 取消删除发行版
helm rollback kubeapps
# 彻底删除
helm delete --purge kubeapps