From 3f09e3a3b35aaf786ad37a3c9ae6b4f12501c3f8 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 25 Sep 2025 18:58:02 -0500 Subject: [PATCH] fixup! bci2: Add resources argument --- vars/buildContainerImage2.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vars/buildContainerImage2.groovy b/vars/buildContainerImage2.groovy index a216931..e67c509 100644 --- a/vars/buildContainerImage2.groovy +++ b/vars/buildContainerImage2.groovy @@ -118,8 +118,8 @@ def runInPod(args, block) { def tmpl = readYaml(text: podTemplateYaml) tmpl.spec.containers.each { it.resources = [ - requests = resources, - limits = resources, + requests: resources, + limits: resources, ] } podTemplateYaml = writeYaml(data: tmpl, returnText: true)