Skip to content

Commit 08ad2d5

Browse files
[CI] Change Windows Job Count to 0-4
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.
1 parent a407fc0 commit 08ad2d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

premerge/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ resource "google_container_node_pool" "llvm_premerge_windows" {
102102
initial_node_count = 0
103103

104104
autoscaling {
105-
total_min_node_count = 1
106-
total_max_node_count = 2
105+
total_min_node_count = 0
106+
total_max_node_count = 4
107107
}
108108

109109
# We do not set a taint for the windows nodes as kubernetes by default sets

premerge/windows_runner_values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
githubConfigUrl: "https://github.com/llvm"
22
githubConfigSecret: "github-token"
33

4-
minRunners: 1
5-
maxRunners: 2
4+
minRunners: 0
5+
maxRunners: 4
66

77
template:
88
metadata:

0 commit comments

Comments
 (0)