Skip to content

Commit

Permalink
Change default var for network (#762)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
xtineskim committed Jul 28, 2022
1 parent af1dbad commit fc885dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fc885dc

Please sign in to comment.