File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -111,15 +111,16 @@ module "prow_build_nodepool_t2a_standard_8" {
111
111
cluster_name = module. prow_build_cluster . cluster . name
112
112
location = module. prow_build_cluster . cluster . location
113
113
node_locations = [
114
- " us-central1-a"
114
+ " us-central1-a" ,
115
+ " us-central1-b" ,
115
116
]
116
- name = " pool5 -arm64"
117
+ name = " pool6 -arm64"
117
118
initial_count = 1
118
119
min_count = 1
119
120
max_count = 10
120
121
image_type = " UBUNTU_CONTAINERD"
121
122
machine_type = " t2a-standard-8"
122
- disk_size_gb = 150
123
+ disk_size_gb = 500
123
124
disk_type = " pd-ssd"
124
125
// GKE automatically taints arm64 nodes
125
126
// https://cloud.google.com/kubernetes-engine/docs/how-to/prepare-arm-workloads-for-deployment#overview
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ resource "google_container_node_pool" "node_pool" {
37
37
min_node_count = var. min_count
38
38
max_node_count = var. max_count
39
39
}
40
+ node_locations = var. node_locations
40
41
41
42
// Set machine type, and enable all oauth scopes tied to the service account
42
43
node_config {
You can’t perform that action at this time.
0 commit comments