From ad7e8158778984889c467666cf4dce32e2095387 Mon Sep 17 00:00:00 2001 From: Vinicius Torres Date: Thu, 30 Jan 2025 16:18:13 -0300 Subject: [PATCH] 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 --- infra/terraform/variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/terraform/variables.tf b/infra/terraform/variables.tf index e438c219e8e..e4c8ec5b8c1 100644 --- a/infra/terraform/variables.tf +++ b/infra/terraform/variables.tf @@ -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" }