From 0f4cf2e2d544db3c4021202897defb032cc19e9a Mon Sep 17 00:00:00 2001 From: The_Spider Date: Sun, 12 Jul 2020 16:03:20 -0500 Subject: [PATCH] move to support new registry. --- build-alpine.jenkins | 55 +++++++++++++++++++++++++++++++------------- 1 file changed, 39 insertions(+), 16 deletions(-) diff --git a/build-alpine.jenkins b/build-alpine.jenkins index 4fbb50a..276dee7 100644 --- a/build-alpine.jenkins +++ b/build-alpine.jenkins @@ -21,9 +21,9 @@ UOemMEg3PjcKNsN65W2WVon5HIZx2XVfGRPjf5ZTVWzZ """ podTemplate( - label: label, - name: "pipeline-worker", - yaml: """--- + label: label, + name: "pipeline-worker", + yaml: """--- apiVersion: v1 kind: Pod metadata: @@ -38,21 +38,44 @@ spec: - /busybox/cat """, ) { - node (label) { - def workspace = pwd() + node (label) { + def workspace = pwd() - stage("Build Alpine with CA") { - container("kaniko") { - def DF = """FROM alpine:latest + stage ("Prepare Kaniko") { + container ("kaniko") { + withCredentials([usernameColonPassword( + credentialsId: repositoryCreds, + variable: "dCreds", + )]) { + def dockerJSON = """{ + "auths": { + "registry.test-chamber-13.lan:5000": { + "auth": "${dcreds.bytes.encodeBase64().toString()}" + } + } + }""" + sh """ + set +x + echo '${dockerJSON}' > /kaniko/.docker/config.json + printf '%s\\n' "${caContent}" >> /kaniko/ssl/certs/ca-certificates.crt + set -x + """ + } + } + } + + stage("Build Alpine with CA") { + container("kaniko") { + def DF = """FROM alpine:latest COPY ${caName} /usr/local/share/ca-certificates/ RUN apk add --no-cache --virtual=.packagecache ca-certificates && \\ - update-ca-certificates --fresh && \\ - apk del .packagecache + update-ca-certificates --fresh && \\ + apk del .packagecache """ - writeFile(file: workspace + "/" + caName, text: caContent) - writeFile(file: workspace + "/Dockerfile", text: DF) - sh "/kaniko/executor --cleanup --insecure --skip-tls-verify --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${pushRepo}/alpine:latest\"" - } - } - } + writeFile(file: workspace + "/" + caName, text: caContent) + writeFile(file: workspace + "/Dockerfile", text: DF) + sh "/kaniko/executor --cleanup --skip-tls-verify --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${pushRepo}/nhyatt/alpine:latest\"" + } + } + } } \ No newline at end of file