Skip to content

Commit

Permalink
Revert "[CI] Disable autoscaling on Linux node pool"
Browse files Browse the repository at this point in the history
This reverts commit cff6f90.

This was reasonably successful. We have not seen any new failures, which helps
confirm our hypothesis that this is related to konnectivity-agent. We do not
want to launch without autoscaling, so the plan is to disable the
kubernetes executor mode at launch.
  • Loading branch information
boomanaiden154 committed Jan 18, 2025
1 parent f3973f7 commit 14e38c1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion premerge/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ resource "google_container_node_pool" "llvm_premerge_linux" {
location = "us-central1-a"
cluster = google_container_cluster.llvm_premerge.name
initial_node_count = 0
node_count = 4

autoscaling {
total_min_node_count = 0
total_max_node_count = 4
}

node_config {
machine_type = "n2-standard-64"
Expand Down

0 comments on commit 14e38c1

Please sign in to comment.