Minor cleanup fixups (#6948)

This commit is contained in:
Eric Van Norman 2020-03-23 12:41:51 -05:00 committed by GitHub
parent 535d2724f0
commit 2b3a873446
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -531,9 +531,9 @@ $ istioctl --context=${REMOTE_CLUSTER_CTX} x create-remote-secret --name ${REMOT
kubectl delete -f - --context=${MAIN_CLUSTER_CTX}
$ istioctl --context=${REMOTE_CLUSTER_CTX} manifest generate -f istio-remote0-cluster.yaml | \
kubectl delete -f - --context=${REMOTE_CLUSTER_CTX}
$ kubectl --context=${REMOTE_CLUSTER_CTX} delete namespace sample
$ unset REMOTE_CLUSTER_CTX REMOTE_CLUSTER_NAME REMOTE_CLUSTER_NETWORK
$ rm istio-remote0-cluster.yaml
$ kubectl --context=${REMOTE_CLUSTER_CTX} delete namespace sample
{{< /text >}}
To uninstall the main cluster, run the following command:
@ -541,7 +541,7 @@ To uninstall the main cluster, run the following command:
{{< text bash >}}
$ istioctl --context=${MAIN_CLUSTER_CTX} manifest generate -f istio-main-cluster.yaml | \
kubectl delete -f - --context=${MAIN_CLUSTER_CTX}
$ unset MAIN_CLUSTER_CTX MAIN_CLUSTER_NAME MAIN_CLUSTER_NETWORK ISTIOD_REMOTE_EP
$ rm istio-main-cluster.yaml cluster-aware-gateway.yaml 2>/dev/null
$ kubectl --context=${MAIN_CLUSTER_CTX} delete namespace sample
$ unset MAIN_CLUSTER_CTX MAIN_CLUSTER_NAME MAIN_CLUSTER_NETWORK ISTIOD_REMOTE_EP
$ rm istio-main-cluster.yaml cluster-aware-gateway.yaml
{{< /text >}}