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 #!groovy
GroovyShell shell = new GroovyShell() def label = podLabel()
def pt = shell.parse(new File('vars/podTemplates.groovy'))
def label = pt.podLabel()
def repositoryCreds = "harbor-repository-creds" def repositoryCreds = "harbor-repository-creds"
podTemplate( podTemplate(
label: label, label: label,
name: "pipeline-worker", name: "pipeline-worker",
yaml: pt.podYaml( yaml: podYaml(
kaniko: true, kaniko: true,
alpine: true, alpine: true,
), ),