From d9ed040d0872df01036bc7e279becde2dbdf24d3 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 25 Sep 2025 19:17:43 -0500 Subject: [PATCH] fixup! bci2: Add resources argument --- vars/buildContainerImage2.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/buildContainerImage2.groovy b/vars/buildContainerImage2.groovy index 393c430..0186d7b 100644 --- a/vars/buildContainerImage2.groovy +++ b/vars/buildContainerImage2.groovy @@ -120,7 +120,7 @@ def runInPod(args, block) { c.resources = c.resources ?: [:] c.resources.putAll([ requests: (c.resources.requests ?: [:]) + resources, - limits: (c.resources.requests ?: [:]) + resources, + limits: (c.resources.limits ?: [:]) + resources, ]) } podTemplateYaml = writeYaml(data: tmpl, returnText: true)