You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/scripts/create-and-setup-gcp-vm.sh
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,16 @@ source scripts/vars.env
16
16
# For IPv6, we create a dual-stack subnet with internal IPv6 addresses and external IPv4 addresses
17
17
if [ "${IPV6_ENABLED}"="true" ];then
18
18
echo"Using IPv6 Network interface for the GKE cluster"
19
+
# gcloud compute networks create ${RESOURCE_NAME} --subnet-mode=custom --enable-ula-internal-ipv6 --quiet # The --subnet-mode=custom flag allows us to create custom subnets
0 commit comments