From f42b5d746ac2d7d2dcf795f181ba09250d897eb9 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Thu, 6 Jan 2022 12:09:11 -0600 Subject: [PATCH] updates variables --- build-rcon.jenkins | 2 ++ vars/podTemplates.groovy | 11 +++++------ 2 files changed, 7 insertions(+), 6 deletions(-) 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 """ }