Skip to content

Commit

Permalink
[CI] Change Windows Job Count to 0-4
Browse files Browse the repository at this point in the history
This patch lowers the minimum windows runner count back down to zero and
raises the maximum runner count to four to match what we have in place for the
linux runner set.
  • Loading branch information
boomanaiden154 committed Jan 26, 2025
1 parent a407fc0 commit 08ad2d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions premerge/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ resource "google_container_node_pool" "llvm_premerge_windows" {
initial_node_count = 0

autoscaling {
total_min_node_count = 1
total_max_node_count = 2
total_min_node_count = 0
total_max_node_count = 4
}

# We do not set a taint for the windows nodes as kubernetes by default sets
Expand Down
4 changes: 2 additions & 2 deletions premerge/windows_runner_values.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
githubConfigUrl: "https://github.com/llvm"
githubConfigSecret: "github-token"

minRunners: 1
maxRunners: 2
minRunners: 0
maxRunners: 4

template:
metadata:
Expand Down

0 comments on commit 08ad2d5

Please sign in to comment.