From cbbb21e12d191f9f47f59758a9ea2d3886edb9b3 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Tue, 15 Mar 2022 16:28:45 -0500 Subject: [PATCH] adds logic to install curl/kubectl only if it does not already exist fro multiple calls and adds create secret --- vars/functions.groovy | 35 ++++++++++++++++++++++++++++++++--- vars/test.groovy | 25 ------------------------- 2 files changed, 32 insertions(+), 28 deletions(-) delete mode 100644 vars/test.groovy diff --git a/vars/functions.groovy b/vars/functions.groovy index b435899..73b0026 100644 --- a/vars/functions.groovy +++ b/vars/functions.groovy @@ -54,9 +54,13 @@ def deletePod (Map config) { stage ("Delete Pod") { container ("alpine") { sh """ - apk add --no-cache curl - curl -L --silent https://nexus.c.test-chamber-13.lan/repository/google-k8s/\$(curl -s https://nexus.c.test-chamber-13.lan/repository/google-k8s/stable.txt)/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl - chmod +x /usr/local/bin/kubectl + if [ ! -f "/usr/bin/curl" ] || [ ! -x "/usr/bin/curl" ]; then + apk add --no-cache curl + fi + if [ ! -f "/usr/local/bin/kubectl" ] || [ ! -x "/usr/local/bin/kubectl" ]; then + curl -L --silent https://nexus.c.test-chamber-13.lan/repository/google-k8s/\$(curl -s https://nexus.c.test-chamber-13.lan/repository/google-k8s/stable.txt)/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl + chmod +x /usr/local/bin/kubectl + fi """ withKubeConfig ([ @@ -70,6 +74,31 @@ def deletePod (Map config) { } } +def createSecret (Map config) { + def ws = pwd() + stage ("Create Secret") { + container ("alpine") { + sh """ + if [ ! -f "/usr/bin/curl" ] || [ ! -x "/usr/bin/curl" ]; then + apk add --no-cache curl + fi + if [ ! -f "/usr/local/bin/kubectl" ] || [ ! -x "/usr/local/bin/kubectl" ]; then + curl -L --silent https://nexus.c.test-chamber-13.lan/repository/google-k8s/\$(curl -s https://nexus.c.test-chamber-13.lan/repository/google-k8s/stable.txt)/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl + chmod +x /usr/local/bin/kubectl + fi + """ + + withKubeConfig ([ + credentialsId: config.kubeAuth, + serverUrl: config.kubeURL, + namespace: config.namespace + ]) { + sh "printf '%s\n' \"" + config.secret + "\" | kubectl apply -f -" + } + } + } +} + def buildContainer (Map config, List buildArg = []) { def ws = pwd() stage ("Build Container") { diff --git a/vars/test.groovy b/vars/test.groovy deleted file mode 100644 index 51b5ae2..0000000 --- a/vars/test.groovy +++ /dev/null @@ -1,25 +0,0 @@ -def call(body) { - def config = [:] - body.resolveStrategy = Closure.DELEGATE_FIRST - body.delegate = config - body () - -/* - def reposConfig = [:] - config.reposConfig.each{repo -> - reposConfig[repo.key] = [ - gitBranch: repo.value.gitBranch, - gitRepo: repo.value.gitRepo, - gitCreds: repo.value.gitCreds, - testValue: repo.value?.testValue ?: "default" - ] - } -*/ - - Map reposConfig = config.reposConfig ?: [:] - reposConfig.each{repo -> - def name = repo.key - echo "Map Element ${name}: ${repo.value.gitRepo} = ${repo.value.testValue}" - } -} -