diff --git a/infra/gcp/terraform/k8s-infra-prow-build-trusted/main.tf b/infra/gcp/terraform/k8s-infra-prow-build-trusted/main.tf index a53ac2450cc..244da03ed9d 100644 --- a/infra/gcp/terraform/k8s-infra-prow-build-trusted/main.tf +++ b/infra/gcp/terraform/k8s-infra-prow-build-trusted/main.tf @@ -82,3 +82,22 @@ module "prow_build_nodepool" { service_account = module.prow_build_cluster.cluster_node_sa.email } +module "prow_build_nodepool_n4_highmem_8" { + source = "../modules/gke-nodepool" + project_name = module.project.project_id + cluster_name = module.prow_build_cluster.cluster.name + location = module.prow_build_cluster.cluster.location + name = "trusted-pool2" + node_locations = [ + "us-central1-a", + "us-central1-b", + "us-central1-f", + ] + initial_count = 1 + min_count = 1 + max_count = 6 + machine_type = "n4-highmem-8" + disk_size_gb = 200 + disk_type = "hyperdisk-balanced" + service_account = module.prow_build_cluster.cluster_node_sa.email +}