我收到此错误消息:
➜ ~ helm version
Error: could not find tiller
我创建了tiller
项目:
➜ ~ oc new-project tiller
Now using project "tiller" on server "https://192.168.99.100:8443".
然后,我创建了tiller
到tiller
命名空间:
➜ ~ helm init --tiller-namespace tiller
$HELM_HOME has been configured at /home/jcabre/.helm.
Tiller (the Helm server-side component) has been installed into your Kubernetes Cluster.
Please note: by default, Tiller is deployed with an insecure 'allow unauthenticated users' policy.
To prevent this, run `helm init` with the --tiller-tls-verify flag.
For more information on securing your installation see: https://docs.helm.sh/using_helm/#securing-your-helm-installation
Happy Helming!
所以,在那之后,我一直在等待tiller
pod准备好了。
➜ ~ oc get pod -w
NAME READY STATUS RESTARTS AGE
tiller-deploy-66cccbf9cd-84swm 0/1 Running 0 18s
NAME READY STATUS RESTARTS AGE
tiller-deploy-66cccbf9cd-84swm 1/1 Running 0 24s
^C%
有任何想法吗?
尝试删除群集分蘖
$ kubectl get all --all-namespaces | grep tiller
$ kubectl delete deployment tiller-deploy -n kube-system
$ kubectl delete service tiller-deploy -n kube-system
$ kubectl get all --all-namespaces | grep tiller
再次初始化它
$ helm init
现在添加服务帐户
$ kubectl create serviceaccount --namespace kube-system tiller
$ kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
$kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'
这解决了我的问题!
您尚未配置helm,请使用以下命令:
helm init
这将在您的主目录中创建.helm
与repository
,plugins
等。
背景:helm
带有客户端和服务器,如果你有不同的部署环境,你的helm服务器(称为tiller
)可能有所不同,在这种情况下,有两种方法可以指向tiller
TILLER_NAMESPACE
--tiller-namespace
字符串命名空间(默认为“kube-system”)有关更多详细信息,请查看helm
READ.md文件。
您将tiller安装到非默认命名空间中,因此您必须告诉helm在哪里查找。
helm --tiller-namespace tiller version
我遇到了同样的问题,尝试使用以下命令重新安装helm:
对于linux :(通过Snap)
sudo snap install helm --classic
对于Linux(来自二进制源):
(tar -zxvf helm-v2.0.0-linux-amd64.tgz)
mv linux-amd64/helm /usr/local/bin/helm)
对于MacOS(通过brew):
brew install kubernetes-helm
对于窗户(Via Chocolatey):
choco install kubernetes-helm
最后,初始化qazxsw poi:
helm
首先,您需要为柜员创建服务帐户以便在helm中使用:
helm init
要验证Tiller是否正在运行:
kubectl -n kube-system create serviceaccount tiller
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller
helm init --service-account tiller
kubectl get pods --namespace kube-system