[master] GKE typo fix (#10881)

* Typo fix for GKE

* make gen

Co-authored-by: Noah Nsimbe <37845280+NoahNsimbe@users.noreply.github.com>
Co-authored-by: Eric Van Norman <ericvn@us.ibm.com>
This commit is contained in:
Istio Automation 2022-02-08 17:07:55 -08:00 committed by GitHub
parent b00ed6db68
commit 3d1ad88e4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -365,7 +365,7 @@ Set the value of `values.global.proxy.includeIPRanges` according to your cluster
Use `--set values.global.proxy.includeIPRanges="172.30.0.0/16\,172.21.0.0/16\,10.10.10.0/24"`
#### Google Container Engine (GKE)
#### Google Kubernetes Engine (GKE)
The ranges are not fixed, so you will need to run the `gcloud container clusters describe` command to determine the
ranges to use. For example:

View File

@ -194,11 +194,11 @@ grep service_cluster_ip_range cluster/config.yaml
service_cluster_ip_range: 10.0.0.1/24
ENDSNIP
snip_google_container_engine_gke_1() {
snip_google_kubernetes_engine_gke_1() {
gcloud container clusters describe XXXXXXX --zone=XXXXXX | grep -e clusterIpv4Cidr -e servicesIpv4Cidr
}
! read -r -d '' snip_google_container_engine_gke_1_out <<\ENDSNIP
! read -r -d '' snip_google_kubernetes_engine_gke_1_out <<\ENDSNIP
clusterIpv4Cidr: 10.4.0.0/14
servicesIpv4Cidr: 10.7.240.0/20
ENDSNIP