Skip to content

Commit ad7e815

Browse files
Upgrade VMs type and number of nodes for GKE cluster (#4650)
Following the work being done to migrate chrome-tests-syncer to k8s, it was noticed that the current spec of GKE clusters is not enough for scheduling the tests-syncer as a k8s cronjob. During the tests done, the cronjob never gets schedule due to insufficient resources (memory/cpu). Thus, this PR aims at upgrading the machine types and the number of nodes available. Related bug: b/389048599 Co-authored-by: Vitor Guidi <[email protected]>
1 parent 50a3f34 commit ad7e815

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

infra/terraform/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ variable "ip_cidr_range" {
3636
}
3737

3838
variable "gke_num_nodes" {
39-
default = 2
39+
default = 5
4040
description = "The number of gke nodes"
4141
}
4242

4343
variable "machine_type" {
44-
default = "e2-standard-2"
44+
default = "e2-standard-4"
4545
description = "The machine type"
4646
}
4747

0 commit comments

Comments
 (0)