mirror of https://github.com/istio/istio.io.git
remove namespce for cluster scope resources. (#9890)
* remove namespce for cluster scope resources. * make gen.
This commit is contained in:
parent
4c52540083
commit
893e4ed281
|
@ -185,7 +185,7 @@ and installing the sidecar injector webhook configuration on the remote cluster
|
|||
1. Confirm that the remote cluster's webhook configuration has been installed:
|
||||
|
||||
{{< text bash >}}
|
||||
$ kubectl get mutatingwebhookconfiguration -n external-istiod --context="${CTX_REMOTE_CLUSTER}"
|
||||
$ kubectl get mutatingwebhookconfiguration --context="${CTX_REMOTE_CLUSTER}"
|
||||
NAME WEBHOOKS AGE
|
||||
istio-sidecar-injector-external-istiod 4 6m24s
|
||||
{{< /text >}}
|
||||
|
@ -568,7 +568,7 @@ $ export SECOND_CLUSTER_NAME=<your second remote cluster name>
|
|||
1. Confirm that the remote cluster's webhook configuration has been installed:
|
||||
|
||||
{{< text bash >}}
|
||||
$ kubectl get mutatingwebhookconfiguration -n external-istiod --context="${CTX_SECOND_CLUSTER}"
|
||||
$ kubectl get mutatingwebhookconfiguration --context="${CTX_SECOND_CLUSTER}"
|
||||
NAME WEBHOOKS AGE
|
||||
istio-sidecar-injector-external-istiod 4 4m13s
|
||||
{{< /text >}}
|
||||
|
|
|
@ -89,7 +89,7 @@ istioctl manifest generate -f remote-config-cluster.yaml | kubectl apply --conte
|
|||
}
|
||||
|
||||
snip_set_up_the_remote_config_cluster_3() {
|
||||
kubectl get mutatingwebhookconfiguration -n external-istiod --context="${CTX_REMOTE_CLUSTER}"
|
||||
kubectl get mutatingwebhookconfiguration --context="${CTX_REMOTE_CLUSTER}"
|
||||
}
|
||||
|
||||
! read -r -d '' snip_set_up_the_remote_config_cluster_3_out <<\ENDSNIP
|
||||
|
@ -393,7 +393,7 @@ istioctl manifest generate -f second-config-cluster.yaml | kubectl apply --conte
|
|||
}
|
||||
|
||||
snip_register_the_new_cluster_4() {
|
||||
kubectl get mutatingwebhookconfiguration -n external-istiod --context="${CTX_SECOND_CLUSTER}"
|
||||
kubectl get mutatingwebhookconfiguration --context="${CTX_SECOND_CLUSTER}"
|
||||
}
|
||||
|
||||
! read -r -d '' snip_register_the_new_cluster_4_out <<\ENDSNIP
|
||||
|
|
Loading…
Reference in New Issue