赫尔姆:找不到分蘖

问题描述 投票:9回答:5

我收到此错误消息:

➜  ~ helm version
Error: could not find tiller

我创建了tiller项目:

➜  ~ oc new-project tiller
Now using project "tiller" on server "https://192.168.99.100:8443".

然后,我创建了tillertiller命名空间:

➜  ~ 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%               

有任何想法吗?

openshift kubernetes-helm
5个回答
19
投票

尝试删除群集分蘖

$ 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"}}}}'

这解决了我的问题!


11
投票

您尚未配置helm,请使用以下命令:

helm init

这将在您的主目录中创建.helmrepositoryplugins等。

背景:helm带有客户端和服务器,如果你有不同的部署环境,你的helm服务器(称为tiller)可能有所不同,在这种情况下,有两种方法可以指向tiller

  • 设置环境变量TILLER_NAMESPACE
  • tiller的--tiller-namespace字符串命名空间(默认为“kube-system”)

有关更多详细信息,请查看helm READ.md文件。


8
投票

您将tiller安装到非默认命名空间中,因此您必须告诉helm在哪里查找。

helm --tiller-namespace tiller  version

1
投票

我遇到了同样的问题,尝试使用以下命令重新安装helm:

对于linux :(通过Snap)

sudo snap install helm --classic

对于Linux(来自二进制源):

  1. 下载您想要的版本
  2. 打开它(tar -zxvf helm-v2.0.0-linux-amd64.tgz)
  3. 在解压缩的目录中找到helm二进制文件,并将其移动到所需的目标位置(mv linux-amd64/helm /usr/local/bin/helm)

对于MacOS(通过brew):

brew install kubernetes-helm

对于窗户(Via Chocolatey):

choco install kubernetes-helm

最后,初始化qazxsw poi:

helm

1
投票

首先,您需要为柜员创建服务帐户以便在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

© www.soinside.com 2019 - 2024. All rights reserved.