diff --git a/build-rcon.jenkins b/build-rcon.jenkins index e75246c..427c98b 100644 --- a/build-rcon.jenkins +++ b/build-rcon.jenkins @@ -1,12 +1,14 @@ #!groovy def label = podTemplates.podLabel() +def repository = "registry.c.test-chamber-13.lan" def repositoryCreds = "harbor-repository-creds" podTemplate( label: label, name: "pipeline-worker", yaml: podTemplates.podYaml( + repo: repository, kaniko: true, alpine: true, ), diff --git a/vars/podTemplates.groovy b/vars/podTemplates.groovy index e119744..795fcad 100644 --- a/vars/podTemplates.groovy +++ b/vars/podTemplates.groovy @@ -6,8 +6,7 @@ def podLabel() { } // return kubernetes pod defination -def podYaml(Map requiredContainers){ - def dockerRepo = "registry.c.test-chamber-13.lan" +def podYaml(Map config){ def output = """ --- apiVersion: v1 @@ -17,21 +16,21 @@ metadata: spec: containers: """ - if (requiredContainers.kaniko == true) { + if (config.kaniko == true) { output += """ - name: kaniko imagePullPolicy: Always - image: ${dockerRepo}/library/kaniko:latest + image: ${config.repo}/library/kaniko:latest tty: true command: - /busybox/sh """ } - if (requiredContainers.alpine == true) { + if (config.alpine == true) { output += """ - name: alpine imagePullPolicy: Always - image: ${dockerRepo}/library/alpine:latest + image: ${config.repo}/library/alpine:latest tty: true """ }