Remove coreDNS,egressgateway --sets (now in values-istio-multicluster-gateways) (#5660)

This commit is contained in:
Eric Van Norman 2019-11-13 13:49:45 -06:00 committed by Istio Automation
parent 37a55d689b
commit 50479f17c6
1 changed files with 7 additions and 3 deletions

View File

@ -94,8 +94,7 @@ Cross-cluster communication occurs over Istio gateways of the respective cluster
{{< text bash >}}
$ istioctl manifest apply \
-f install/kubernetes/operator/examples/multicluster/values-istio-multicluster-gateways.yaml \
--set coreDNS.enabled=true --set gateways.components.egressGateway.enabled=true
-f install/kubernetes/operator/examples/multicluster/values-istio-multicluster-gateways.yaml
{{< /text >}}
For further details and customization options, refer to the
@ -463,6 +462,12 @@ Execute the following commands to clean up the example services.
$ kubectl delete --context=$CTX_CLUSTER2 ns bar
{{< /text >}}
* Cleanup `environment variables`:
{{< text bash >}}
$ unset SLEEP_POD CLUSTER2_GW_ADDR CLUSTER1_EGW_ADDR CTX_CLUSTER1 CTX_CLUSTER2
{{< /text >}}
## Version-aware routing to remote services
If the remote service has multiple versions, you can add
@ -511,7 +516,6 @@ Uninstall Istio by running the following commands on **every cluster**:
{{< text bash >}}
$ istioctl manifest generate \
-f install/kubernetes/operator/examples/multicluster/values-istio-multicluster-gateways.yaml \
--set coreDNS.enabled=true --set gateways.components.egressGateway.enabled=true \
| kubectl delete -f -
{{< /text >}}