fixup! bci2: Add resources argument

Dustin 2025-09-25 18:58:02 -05:00
parent 835ec75472
commit 3f09e3a3b3
1 changed files with 2 additions and 2 deletions

View File

@ -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)