Skip to content

Commit b1912b1

Browse files
authored
Update installing-workflow to remove helm using the reset command
The former command would log a warning "Warning: Tiller is already installed in the cluster" and restart with the old configuration rather than using RBAC configuration. After replacing with helm reset the issue was resolved and new tiller was successfully installed.
1 parent 2db3939 commit b1912b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/installing-workflow/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ helm init --service-account=tiller-deploy
3333
If `helm` is already installed in cluster without sufficient rights, the only way for now is to reinstall it:
3434

3535
```
36-
$ kubectl delete deployment tiller-deploy -n kube-system
36+
$ helm reset
3737
$ kubectl create sa tiller-deploy -n kube-system
3838
$ kubectl create clusterrolebinding helm --clusterrole=cluster-admin --serviceaccount=kube-system:tiller-deploy
3939
$ helm init --service-account=tiller-deploy

0 commit comments

Comments
 (0)