File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,27 @@ module "prow_build_nodepool_n1_highmem_8_localssd" {
105
105
service_account = module. prow_build_cluster . cluster_node_sa . email
106
106
}
107
107
108
+ module "prow_build_nodepool_c4_highmem_8_localssd" {
109
+ source = " ../modules/gke-nodepool"
110
+ project_name = module. project . project_id
111
+ cluster_name = module. prow_build_cluster . cluster . name
112
+ location = module. prow_build_cluster . cluster . location
113
+ node_locations = [
114
+ " us-central1-b" ,
115
+ " us-central1-c" ,
116
+ " us-central1-f" ,
117
+ ]
118
+ name = " pool6"
119
+ initial_count = 1
120
+ min_count = 1
121
+ max_count = 80
122
+ machine_type = " c4-highmem-8"
123
+ disk_size_gb = 500
124
+ disk_type = " hyperdisk-balanced"
125
+ service_account = module. prow_build_cluster . cluster_node_sa . email
126
+ taints = [{ key = " dedicated" , value = " sig-testing" , effect = " NO_SCHEDULE" }]
127
+ }
128
+
108
129
module "prow_build_nodepool_t2a_standard_8" {
109
130
source = " ../modules/gke-nodepool"
110
131
project_name = module. project . project_id
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ variable "location" {
31
31
32
32
variable "node_locations" {
33
33
description = " The GCP locations (regions or zones) where the node_pool should be located"
34
- type = list
34
+ type = list ( any )
35
35
default = []
36
36
}
37
37
@@ -63,7 +63,7 @@ variable "machine_type" {
63
63
variable "image_type" {
64
64
description = " The image_type of this node_pool"
65
65
type = string
66
- default = " COS "
66
+ default = " COS_CONTAINERD "
67
67
}
68
68
69
69
variable "disk_size_gb" {
You can’t perform that action at this time.
0 commit comments