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
This commit is contained in:
Vishnu
2019-02-15 11:15:16 +11:00
committed by Denise
parent 0008410256
commit fb38113665
@@ -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