File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
infra/gcp/terraform/k8s-infra-prow-build-trusted Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -82,3 +82,25 @@ module "prow_build_nodepool" {
82
82
service_account = module. prow_build_cluster . cluster_node_sa . email
83
83
}
84
84
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
+
You can’t perform that action at this time.
0 commit comments