Skip to content

Commit 46f8051

Browse files
[CI] Bump max premerge job count to 8
Now that we are turning premerge on for PRs, we will need more capacity to handle the increased load. This patch bumps the max job count for Linux and Windows to 8 so that we can take full advantage of the 1024 N2 cores that we have.
1 parent cf9ce70 commit 46f8051

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

premerge/linux_runners_values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ githubConfigUrl: "https://github.com/llvm"
22
githubConfigSecret: "github-token"
33

44
minRunners: 0
5-
maxRunners: 4
5+
maxRunners: 8
66

77
template:
88
metadata:

premerge/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ resource "google_container_node_pool" "llvm_premerge_linux" {
7878

7979
autoscaling {
8080
total_min_node_count = 0
81-
total_max_node_count = 4
81+
total_max_node_count = 8
8282
}
8383

8484
node_config {
@@ -103,7 +103,7 @@ resource "google_container_node_pool" "llvm_premerge_windows" {
103103

104104
autoscaling {
105105
total_min_node_count = 0
106-
total_max_node_count = 4
106+
total_max_node_count = 8
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ githubConfigUrl: "https://github.com/llvm"
22
githubConfigSecret: "github-token"
33

44
minRunners: 0
5-
maxRunners: 4
5+
maxRunners: 8
66

77
template:
88
metadata:

0 commit comments

Comments
 (0)