运行helm init失败
我尝试在MacOS Mojave 10.14.5上执行:
helm init
$HELM_HOME has been configured at /Users/johnnydepp/.helm.
Error: error installing: Post https://192.168.99.103:8443/apis/extensions/v1beta1/namespaces/kube-system/deployments: Gateway Timeout期望的输出是它应该将Tiller安装到我正在运行的Kubernetes集群中。它还将设置任何必要的本地配置。
发布于 2019-06-04 20:50:26
试试这个:
kubectl -n kube-system create serviceaccount tiller
kubectl create clusterrolebinding tiller \
--clusterrole cluster-admin \
--serviceaccount=kube-system:tiller
helm init --service-account tiller --history-max 200 共享以下命令的输出:
kubectl get csNAME STATUS MESSAGE ERROR
controller-manager Healthy ok
scheduler Healthy ok
etcd-0 Healthy {"health":"true"} https://stackoverflow.com/questions/56443369
复制相似问题