another attempt using libraries

This commit is contained in:
Hyatt 2022-01-06 11:35:29 -06:00
parent 512a3fc9ff
commit 33f5714a1d
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 2 additions and 5 deletions

View File

@ -1,15 +1,12 @@
#!groovy
GroovyShell shell = new GroovyShell()
def pt = shell.parse(new File('vars/podTemplates.groovy'))
def label = pt.podLabel()
def label = podLabel()
def repositoryCreds = "harbor-repository-creds"
podTemplate(
label: label,
name: "pipeline-worker",
yaml: pt.podYaml(
yaml: podYaml(
kaniko: true,
alpine: true,
),