File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2222
2323if [ " ${IPV6_ENABLE} " = " true" ]; then
2424 echo " Creating IPv6 Network interface for the GKE cluster"
25- gcloud compute networks create ${GKE_CLUSTER_NAME} -network --subnet-mode=custom --bgp-routing-mode=regional --mtu=1460
25+ gcloud compute networks create ${GKE_CLUSTER_NAME} -network --subnet-mode=custom --bgp-routing-mode=regional --mtu=1460 --quiet
2626 gcloud compute networks subnets create ${GKE_CLUSTER_NAME} -subnet \
2727 --network=${GKE_CLUSTER_NAME} -network \
2828 --stack-type=IPV6_ONLY \
@@ -45,9 +45,9 @@ gcloud container clusters create "${GKE_CLUSTER_NAME}" \
4545 --logging=SYSTEM,WORKLOAD \
4646 --machine-type " ${GKE_MACHINE_TYPE} " \
4747 --num-nodes " ${GKE_NUM_NODES} " \
48- --no-enable-insecure-kubelet-readonly-port \
49- --network=${GKE_CLUSTER_NAME} -network \
50- --subnetwork=${GKE_CLUSTER_NAME} -subnet
48+ --no-enable-insecure-kubelet-readonly-port
49+ # --network=${GKE_CLUSTER_NAME}-network \
50+ # --subnetwork=${GKE_CLUSTER_NAME}-subnet
5151
5252# Add current IP to GKE master control node access, if this script is not invoked during a CI run.
5353if [ " ${IS_CI} " = " false" ]; then
You can’t perform that action at this time.
0 commit comments