Add documentation about removing CRDs. (#3436)

This commit is contained in:
Ozben Evren 2019-02-28 11:46:31 -08:00 committed by istio-bot
parent c9c7bd6dea
commit 225d449046
1 changed files with 25 additions and 0 deletions

View File

@ -109,6 +109,31 @@ Choose this option if your cluster doesn't have [Tiller](https://github.com/kube
{{< /text >}}
{{< warning >}}
Do not manually delete Custom Resource Definitions from the generated yaml. Doing so will cause precondition
checks on various components to fail and will stop Istio from starting up correctly.
<p> If you *absolutely have to* delete CRDs, then update Galley deployment settings to explicitly indicate the kinds of deleted CRDs:
{{< text bash >}}
$ kubectl -n istio-system edit deployment istio-galley
{{< /text >}}
{{< text yaml >}}
containers:
- command:
- /usr/local/bin/galley
- server
# ...
- --excludedResourceKinds
- noop # exclude CRD w/ kind: noop
{{< /text >}}
{{< /warning >}}
1. Uninstall steps:
{{< text bash >}}