From 7282abad5368f7095f8cea0a9cdbbf5aeb7f5360 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Fri, 1 Apr 2022 19:40:46 -0500 Subject: [PATCH] converts pipeline to declarative format --- build-vlmcsd.jenkins | 165 +++++++++++++++++++++++++++++-------------- 1 file changed, 111 insertions(+), 54 deletions(-) diff --git a/build-vlmcsd.jenkins b/build-vlmcsd.jenkins index ae9dc1d..ad13943 100644 --- a/build-vlmcsd.jenkins +++ b/build-vlmcsd.jenkins @@ -1,12 +1,57 @@ #!groovy +// This is a little complicated to follow, just by looking, but the workflow is +// +// * Append the root CA to the official kanio image that will use to build +// the local kaniko image. +// * Copy the entire cert-store to the workspace. +// * Add the file to the locally built kaniko image from the workspace. +// * Build the image +// +// This method insures an always up-to date kaniko with an up-to-date +// certificate store. + def repository = "registry.c.test-chamber-13.lan" def repositoryCreds = "harbor-repository-creds" -def dockerFile = """ +def workspace +def dockerFile + +def label = "kubernetes-${UUID.randomUUID().toString()}" +def templateName = "pipeline-worker" +pipeline { + agent { + kubernetes { + yaml functions.podYaml( + repo: repository, + templateName: templateName, + kaniko: true, + alpine: true + ) + } + } + + stages { + stage ('Initalize Jenkins') { + steps { + script { + workspace = pwd() + dockerFile = """ FROM ${repository}/library/alpine:latest -LABEL maintainer="The_Spider " +LABEL org.opencontainers.image.authors="The_Spider " +LABEL org.opencontainers.image.title="vlmcsd" +LABEL org.opencontainers.image.description="Docker container for the windows activation server" +LABEL org.opencontainers.image.base.name="docker.io/library/alpine:latest" + +ENV LISTEN_IP="0.0.0.0" +ENV LISTEM_PORT="1688" +ENV MAX_CLIENTS="5" +ENV TIMEOUT_INACTIVITY="5" +ENV RENEW_INTERVAL="1w" +ENV RETRY_INTERVAL="1h" +ENV LCID="1033" +ENV BUILD_NO="36446" RUN apk add --no-cache openssl && \\ addgroup -g 1000 -S vlmcsd && \\ @@ -21,66 +66,78 @@ WORKDIR /home/vlmcsd HEALTHCHECK --interval=1m --timeout=3s --start-period=10s --retries=3 \ CMD ["/bin/sh", "-c", "printf '\\n' | openssl s_client --connect 127.0.0.1:1688 2> /dev/null | grep 'CONNECTED'"] -ENTRYPOINT ["/bin/sh", "-c", "./vlmcsd -L 0.0.0.0:1688 -m 5 -t 5 -e -N1 -B1 -r1 -C 1033 -R 1w -A 1h -H 36446 -v -D -j ./vlmcsd.kmd"] +ENTRYPOINT ["/bin/sh", "-c", "./vlmcsd -L \${LISTEN_IP}:\${LISTEN_PORT} -m \${MAX_CLIENTS} -t \${TIMEOUT_INACTIVITY} -e -N1 -B1 -C \${LCID} -R \${RENEW_INTERVAL} -A \${RETRY_INTERVAL} -H \${BUILD_NO} -v -D -j ./vlmcsd.kmd"] """ + } + } + } -def label = "kubernetes-${UUID.randomUUID().toString()}" -def templateName = "pipeline-worker" -podTemplate ( - label: label, - name: templateName, - yaml: functions.podYaml( - repo: repository, - templateName: templateName, - kaniko: true, - alpine: true - ) -){ - node (label) { stage ("Pull VLMCSD Source") { - dir("vlmcsd") { - checkout ([ - $class: "GitSCM", - branches: [ - [ - name: "refs/heads/master", - ], - ], - userRemoteConfigs: [ - [ - url: "ssh://git@gitea.smoothnet.org:31822/nhyatt/vlmcsd-source.git", - credentialsId: "Gitea-Read-Only-Token", - ], - ], - extensions: [ - [ - $class: "CloneOption", - shallow: true, - ], - [ - $class: "CheckoutOption", - timeout: 2, - ], - ], - ]) + steps { + script { + dir("vlmcsd") { + checkout ([ + $class: "GitSCM", + branches: [ + [ + name: "refs/heads/master", + ], + ], + userRemoteConfigs: [ + [ + url: "ssh://git@gitea.smoothnet.org:31822/nhyatt/vlmcsd-source.git", + credentialsId: "Gitea-Read-Only-Token", + ], + ], + extensions: [ + [ + $class: "CloneOption", + shallow: true, + ], + [ + $class: "CheckoutOption", + timeout: 2, + ], + ], + ]) + } + } } } - container ("alpine") { - stage ("Build VLMCSD") { - sh """ - apk --no-cache add gcc make musl-dev git - cd "${workspace}/vlmcsd" - make - """ + stage ("Compile VLMCSD") { + steps { + container ('alpine') { + script { + sh """ + apk --no-cache add gcc make musl-dev git + cd "${workspace}/vlmcsd" + make + """ + } + } } } - functions.buildContainer( - repository: repository, - imageDest: "${repository}/library/vlmcsd:latest", - dockerFile: dockerFile, - repoCreds: repositoryCreds, - ) + stage ('Build & Push') { + steps { + container ('kaniko') { + script { + declarativeFunctions.buildContainerMultipleDestinations( + dockerFile: dockerFile, + repositoryAccess: [ + [ + repository: repository, + credentials: repositoryCreds + ], + ], + destination: [ + "${repository}/library/vlmcsd:latest", + ] + ) + } + } + } + } } }