Skip to content

Commit ac464b3

Browse files
committed
jobs/build-node-image: only request 1 CPU
Like some of our other jobs, all the heavy lifting is done in dedicated builders so we can be more conservative here. The default request is 2 (which adds up to 3 with the jnlp container, which... we could probably cut that down to a quarter).
1 parent e820d19 commit ac464b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jobs/build-node-image.Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ def src_config_ref = stream_info.source_config.ref
5050
def src_config_url = stream_info.source_config.url
5151

5252
lock(resource: "build-node-image") {
53+
// building actually happens on builders so we don't need much resources
5354
cosaPod(image: params.COREOS_ASSEMBLER_IMAGE,
54-
memory: "512Mi", kvm: false,
55+
memory: "512Mi", cpu: "1", kvm: false,
5556
serviceAccount: "jenkins",
5657
secrets: ["brew-keytab", "brew-ca:ca.crt:/etc/pki/ca.crt",
5758
"koji-conf:koji.conf:/etc/koji.conf",

0 commit comments

Comments
 (0)