From b4568706a37b33de33a1fe61ee6040d978fb095a Mon Sep 17 00:00:00 2001 From: Vaughn Dice Date: Wed, 5 Jul 2017 09:59:11 -0600 Subject: [PATCH] docs(installing-workflow): helm init upgrade note (#819) --- src/installing-workflow/index.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/installing-workflow/index.md b/src/installing-workflow/index.md index 922e69ab..84852b87 100644 --- a/src/installing-workflow/index.md +++ b/src/installing-workflow/index.md @@ -30,14 +30,7 @@ $ kubectl create clusterrolebinding helm --clusterrole=cluster-admin --serviceac $ helm init --service-account=tiller-deploy ``` -If `helm` is already installed in cluster without sufficient rights, the only way for now is to reinstall it: - -``` -$ helm reset -$ kubectl create sa tiller-deploy -n kube-system -$ kubectl create clusterrolebinding helm --clusterrole=cluster-admin --serviceaccount=kube-system:tiller-deploy -$ helm init --service-account=tiller-deploy -``` +If `helm` is already installed in cluster without sufficient rights, simply add `--upgrade` to the `init` command above. **Note**: Specific `helm` permissions haven't been sorted yet and details may change (watch `helm` [docs](https://github.com/kubernetes/helm/tree/master/docs))