From fc885dcf110082537807cee7d2af1e9410210f8f Mon Sep 17 00:00:00 2001 From: Christine Kim <35876108+ckim328@users.noreply.github.com> Date: Thu, 28 Jul 2022 16:18:10 -0400 Subject: [PATCH] Change default var for network (#762) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #n/a☕️ Changed the network name being created We were seeing the error where we ran into too many clusters being created with the `default` vpc network, which was also being by other java CI flows not in this repo. --- .../java/com/google/cloud/container/v1/it/ITSystemTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/it/ITSystemTest.java b/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/it/ITSystemTest.java index 83dbc482cd08..085673430b3a 100644 --- a/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/it/ITSystemTest.java +++ b/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/it/ITSystemTest.java @@ -55,7 +55,7 @@ public class ITSystemTest { + "/zones/us-central1-a/clusters/" + CLUSTER_NAME; private static final String NODE_POOL_SEL_LINK = SELF_LINK + "/nodePools/" + NODE_POOL_NAME; - private static final String NETWORK = "default"; + private static final String NETWORK = "java-container-network"; private static final int INITIAL_NODE_COUNT = 1; @BeforeClass