Я получаю сообщение об ошибке:
➜ ~ 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
готов.
➜ ~ 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%
Есть идеи?