From 0eba1fe9a98b272ea144cb5da3bfddc6d26b7eeb Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 27 Sep 2019 23:18:53 -0400 Subject: [PATCH] Add reminder to delete nginx-ingress ClusterRole and ClusterRoleBinding --- docs/installation.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/installation.md b/docs/installation.md index f757143ef5..e3a59481d3 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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 +``` +