Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions infra/gcp/terraform/k8s-infra-prow-build-trusted/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}