【发布时间】:2019-01-09 19:58:09
【问题描述】:
我收到此错误消息:
➜ ~ 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%
有什么想法吗?
【问题讨论】: