mirror of https://github.com/istio/istio.io.git
Uninstall: add note about removal of istio-system ns (#7151)
* Uninstall: add note about removal of istio-system ns Fixes: #23189. * Clarify the reason of not removing it * Apply suggestions from code review Co-Authored-By: Frank Budinsky <frankb@ca.ibm.com> Co-authored-by: Frank Budinsky <frankb@ca.ibm.com>
This commit is contained in:
parent
d35bf73569
commit
1449b54534
|
@ -388,13 +388,20 @@ We welcome you to ask questions and give us feedback by joining the
|
|||
|
||||
## Uninstall
|
||||
|
||||
The uninstall deletes the RBAC permissions, the `istio-system` namespace, and
|
||||
all resources hierarchically under it. It is safe to ignore errors for
|
||||
non-existent resources because they may have been deleted hierarchically.
|
||||
The uninstall deletes the RBAC permissions and all resources hierarchically
|
||||
under the `istio-system` namespace. It is safe to ignore errors for non-existent
|
||||
resources because they may have been deleted hierarchically.
|
||||
|
||||
{{< text bash >}}
|
||||
$ istioctl manifest generate --set profile=demo | kubectl delete -f -
|
||||
{{< /text >}}
|
||||
|
||||
The `istio-system` namespace is not removed by default.
|
||||
If no longer needed, use the following command to remove it:
|
||||
|
||||
{{< text bash >}}
|
||||
$ kubectl delete namespace istio-system
|
||||
{{< /text >}}
|
||||
|
||||
To delete the `Bookinfo` sample application and its configuration, see
|
||||
[`Bookinfo` cleanup](/docs/examples/bookinfo/#cleanup).
|
||||
|
|
|
@ -532,3 +532,10 @@ To uninstall Istio, run the following command:
|
|||
{{< text bash >}}
|
||||
$ istioctl manifest generate <your original installation options> | kubectl delete -f -
|
||||
{{< /text >}}
|
||||
|
||||
The control plane namespace (e.g., `istio-system`) is not removed by default.
|
||||
If no longer needed, use the following command to remove it:
|
||||
|
||||
{{< text bash >}}
|
||||
$ kubectl delete namespace istio-system
|
||||
{{< /text >}}
|
||||
|
|
Loading…
Reference in New Issue