From fb38113665239a83634d886caab0c268dc0f87ca Mon Sep 17 00:00:00 2001 From: Vishnu Date: Fri, 15 Feb 2019 11:15:16 +1100 Subject: [PATCH] Added missing "=" while creating cluster-admin. The "=" was missing in this snip, after --clusterrole. '--clusterrole cluster-admin \' When the command is executed without = , the ntillre won't function properly. Refer https://stackoverflow.com/questions/54683563/helm-error-error-the-server-has-asked-for-the-client-to-provide-credentials --- content/rancher/v2.x/en/installation/ha/helm-init/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rancher/v2.x/en/installation/ha/helm-init/_index.md b/content/rancher/v2.x/en/installation/ha/helm-init/_index.md index feaa1fb9052..3dc99fdcd48 100644 --- a/content/rancher/v2.x/en/installation/ha/helm-init/_index.md +++ b/content/rancher/v2.x/en/installation/ha/helm-init/_index.md @@ -22,7 +22,7 @@ Helm installs the `tiller` service on your cluster to manage charts. Since RKE e kubectl -n kube-system create serviceaccount tiller kubectl create clusterrolebinding tiller \ - --clusterrole cluster-admin \ + --clusterrole=cluster-admin \ --serviceaccount=kube-system:tiller helm init --service-account tiller