Skip to content

Commit 0fec2d7

Browse files
[CI] Change machine shape
This patch changes the machine shape of the premerge jobs to use 64 thread machines rather than 32 thread machines. This is mostly to make test jobs run faster to increase iteration rate.
1 parent e1146f8 commit 0fec2d7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

premerge/linux_container_pod_template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ spec:
2222
cpu: "100m"
2323
memory: "25Gi"
2424
limits:
25-
cpu: 32
26-
memory: "32Gi"
25+
cpu: 64
26+
memory: "256Gi"

premerge/linux_runners_values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ template:
4747
# itself doesn't need much, just using something enough not to get
4848
# OOM killed.
4949
requests:
50-
cpu: 25
50+
cpu: 55
5151
memory: "2Gi"
5252
limits:
53-
cpu: 32
53+
cpu: 64
5454
memory: "2Gi"
5555
env:
5656
- name: ACTIONS_RUNNER_CONTAINER_HOOKS

premerge/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ resource "google_container_node_pool" "llvm_premerge_linux" {
8282
}
8383

8484
node_config {
85-
machine_type = "n2-highcpu-32"
85+
machine_type = "n2-standard-64"
8686
taint = [{
8787
key = "premerge-platform"
8888
value = "linux"
@@ -108,7 +108,7 @@ resource "google_container_node_pool" "llvm_premerge_windows" {
108108
# We do not set a taint for the windows nodes as kubernetes by default sets
109109
# a node.kubernetes.io/os taint for windows nodes.
110110
node_config {
111-
machine_type = "n2-highcpu-32"
111+
machine_type = "n2-standard-64"
112112
labels = {
113113
"premerge-platform" : "windows"
114114
}

premerge/windows_runner_values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ template:
2121
- name: runner
2222
resources:
2323
requests:
24-
cpu: 25
24+
cpu: 55
2525
# TODO(boomanaiden154): Update this image when we have a proper windows
2626
# image ready.
2727
image: ghcr.io/keenuts-test-org/windows-ci-image:latest

0 commit comments

Comments
 (0)