Skip to content

Commit caa83ae

Browse files
committed
Remove networking flags for debugging
1 parent d6998a8 commit caa83ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/scripts/create-gke-cluster.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222

2323
if [ "${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.
5353
if [ "${IS_CI}" = "false" ]; then

0 commit comments

Comments
 (0)