8000 Add reminder to delete nginx-ingress ClusterRole by mattwahner · Pull Request #713 · nginx/kubernetes-ingress · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,10 @@ Delete the `nginx-ingress` namespace to uninstall the Ingress controller along w
$ kubectl delete namespace nginx-ingress
```

**Note**: If RBAC is enabled on your cluster and you completed step 2, you will need to remove the ClusterRole and ClusterRoleBinding created in that step:

```
$ kubectl delete clusterrole nginx-ingress
$ kubectl delete clusterrolebinding nginx-ingress
```

0