Skip to content

Commit d3d17cf

Browse files
committed
add c4 nodepool to trusted cluster
1 parent ca6b49a commit d3d17cf

File tree

1 file changed

+22
-0
lines changed
  • infra/gcp/terraform/k8s-infra-prow-build-trusted

1 file changed

+22
-0
lines changed

infra/gcp/terraform/k8s-infra-prow-build-trusted/main.tf

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,25 @@ module "prow_build_nodepool" {
8282
service_account = module.prow_build_cluster.cluster_node_sa.email
8383
}
8484

85+
module "prow_build_nodepool2" {
86+
source = "../modules/gke-nodepool"
87+
project_name = module.project.project_id
88+
cluster_name = module.prow_build_cluster.cluster.name
89+
location = module.prow_build_cluster.cluster.location
90+
name = "trusted-pool2"
91+
node_locations = [
92+
"us-central1-a",
93+
"us-central1-b",
94+
"us-central1-c",
95+
]
96+
initial_count = 1
97+
min_count = 1
98+
max_count = 6
99+
image_type = "UBUNTU_CONTAINERD"
100+
machine_type = "c4-highmem-8"
101+
disk_size_gb = 200
102+
disk_type = "hyperdisk-balanced"
103+
service_account = module.prow_build_cluster.cluster_node_sa.email
104+
}
105+
106+

0 commit comments

Comments
 (0)