We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 499a88d commit 30b5a4dCopy full SHA for 30b5a4d
scaletest/terraform/gcp_cluster.tf
@@ -8,6 +8,13 @@ resource "google_container_cluster" "primary" {
8
project = var.project_id
9
network = google_compute_network.vpc.name
10
subnetwork = google_compute_subnetwork.subnet.name
11
+ networking_mode = "VPC_NATIVE"
12
+ ip_allocation_policy { # Required with networking_mode=VPC_NATIVE
13
+
14
+ }
15
+ release_channel {
16
+ channel = "STABLE"
17
18
initial_node_count = 1
19
remove_default_node_pool = true
20
network_policy {
0 commit comments