Skip to content

Commit

Permalink
Upgrade VMs type and number of nodes for GKE cluster (#4650)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
ViniciustCosta and vitorguidi authored Jan 30, 2025
1 parent 50a3f34 commit ad7e815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ variable "ip_cidr_range" {
}

variable "gke_num_nodes" {
default = 2
default = 5
description = "The number of gke nodes"
}

variable "machine_type" {
default = "e2-standard-2"
default = "e2-standard-4"
description = "The machine type"
}

Expand Down

0 comments on commit ad7e815

Please sign in to comment.