我已经做到了:
brew install kubernetes-helm
helm init
helm install stable/mysql我得到了:
Error: no available release name found有什么建议吗?
这对btw - Helm: Error: no available release name found没有帮助
发布于 2018-11-02 19:38:29
根据您的Kubernetes版本/配置,您可能需要为tiller配置rbac:
$ kubectl create serviceaccount --namespace kube-system tiller $ kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller $ helm init --service-account tiller
发布于 2018-11-05 14:22:59
如果尚未创建/启用rbac和命名空间。如果已在Chart.yaml中定义了版本,请运行此命令
helm install --名称"mysql“稳定/mysql--版本Mysql.1.3
如果已启用rbac和命名空间,请首先使用
kubectl get namespaces --all-namespaces=true
如果您的命名空间已创建,则应列出此列表。然后运行以下命令
helm install -n namespace_name --名称mysql稳定/mysql--版本Mysql1.3
发布于 2018-10-31 23:33:33
在安装命令之前运行$ helm repo update。
https://stackoverflow.com/questions/53086454
复制相似问题