From cff6f908b3ba0077f2df247640dfcb933306e6b7 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Fri, 17 Jan 2025 07:36:22 +0000 Subject: [PATCH] [CI] Disable autoscaling on Linux node pool Still running into problems with some jobs getting killed. Trying to disabling autoscaling to see if that is related to the issue. --- premerge/main.tf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/premerge/main.tf b/premerge/main.tf index ff04e035..c3536f88 100644 --- a/premerge/main.tf +++ b/premerge/main.tf @@ -75,11 +75,7 @@ resource "google_container_node_pool" "llvm_premerge_linux" { location = "us-central1-a" cluster = google_container_cluster.llvm_premerge.name initial_node_count = 0 - - autoscaling { - total_min_node_count = 0 - total_max_node_count = 4 - } + node_count = 4 node_config { machine_type = "n2-standard-64"