Skip to content

Commit 211c2b3

Browse files
Bump CPU limit on GHA runners (#3485)
[ci] Another attempt at improving on DACH-NY/cn-test-failures#6681 See the last few comments there. I thought about picking a bigger runner just for the ones that failed. But: - it seems like arbitrary large ones could fail atm - we don't need more memory, just more CPU - I don't see a significant downside in bumping limits; I'm keeping requests the same, so shouldn't impact costs, and it seems like we get those CPU usage spikes rarely enough to not interfere with other workloads... will monitor the situation ofc Open to reverting this again if we do find a better theory / solution... Specifically I still have no idea why we sometimes need more CPU. Maybe we're getting CPU throttled for some weird k8s reason (that should improve by raising limits). Maybe we should configure more verbose logging on the runners and that will tell us. But honestly if this bump fixes it I'm happy enough to not dig deeper... Signed-off-by: Martin Florian <martin.florian@digitalasset.com>
1 parent 5c9c6f0 commit 211c2b3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cluster/pulumi/gha/src/runners.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const runnerSpecs = [
5656
memory: '10Gi',
5757
},
5858
limits: {
59-
cpu: '4',
59+
cpu: '6',
6060
memory: '10Gi',
6161
},
6262
},
@@ -71,7 +71,7 @@ const runnerSpecs = [
7171
memory: '18Gi',
7272
},
7373
limits: {
74-
cpu: '4',
74+
cpu: '6',
7575
memory: '18Gi',
7676
},
7777
},
@@ -86,7 +86,7 @@ const runnerSpecs = [
8686
memory: '24Gi',
8787
},
8888
limits: {
89-
cpu: '5',
89+
cpu: '7',
9090
memory: '24Gi',
9191
},
9292
},
@@ -101,7 +101,7 @@ const runnerSpecs = [
101101
memory: '32Gi',
102102
},
103103
limits: {
104-
cpu: '6',
104+
cpu: '8',
105105
memory: '32Gi',
106106
},
107107
},
@@ -116,7 +116,7 @@ const runnerSpecs = [
116116
memory: '52Gi',
117117
},
118118
limits: {
119-
cpu: '8',
119+
cpu: '10',
120120
memory: '52Gi',
121121
},
122122
},

0 commit comments

Comments
 (0)