converts pipeline to declarative format
This commit is contained in:
parent
367ae2628e
commit
7282abad53
@ -1,12 +1,57 @@
|
|||||||
#!groovy
|
#!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 repository = "registry.c.test-chamber-13.lan"
|
||||||
def repositoryCreds = "harbor-repository-creds"
|
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
|
FROM ${repository}/library/alpine:latest
|
||||||
|
|
||||||
LABEL maintainer="The_Spider <spider@smoothnet.org>"
|
LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
|
||||||
|
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 && \\
|
RUN apk add --no-cache openssl && \\
|
||||||
addgroup -g 1000 -S vlmcsd && \\
|
addgroup -g 1000 -S vlmcsd && \\
|
||||||
@ -21,23 +66,15 @@ WORKDIR /home/vlmcsd
|
|||||||
HEALTHCHECK --interval=1m --timeout=3s --start-period=10s --retries=3 \
|
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'"]
|
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") {
|
stage ("Pull VLMCSD Source") {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
dir("vlmcsd") {
|
dir("vlmcsd") {
|
||||||
checkout ([
|
checkout ([
|
||||||
$class: "GitSCM",
|
$class: "GitSCM",
|
||||||
@ -65,9 +102,13 @@ podTemplate (
|
|||||||
])
|
])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
container ("alpine") {
|
stage ("Compile VLMCSD") {
|
||||||
stage ("Build VLMCSD") {
|
steps {
|
||||||
|
container ('alpine') {
|
||||||
|
script {
|
||||||
sh """
|
sh """
|
||||||
apk --no-cache add gcc make musl-dev git
|
apk --no-cache add gcc make musl-dev git
|
||||||
cd "${workspace}/vlmcsd"
|
cd "${workspace}/vlmcsd"
|
||||||
@ -75,12 +116,28 @@ podTemplate (
|
|||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
functions.buildContainer(
|
stage ('Build & Push') {
|
||||||
repository: repository,
|
steps {
|
||||||
imageDest: "${repository}/library/vlmcsd:latest",
|
container ('kaniko') {
|
||||||
|
script {
|
||||||
|
declarativeFunctions.buildContainerMultipleDestinations(
|
||||||
dockerFile: dockerFile,
|
dockerFile: dockerFile,
|
||||||
repoCreds: repositoryCreds,
|
repositoryAccess: [
|
||||||
|
[
|
||||||
|
repository: repository,
|
||||||
|
credentials: repositoryCreds
|
||||||
|
],
|
||||||
|
],
|
||||||
|
destination: [
|
||||||
|
"${repository}/library/vlmcsd:latest",
|
||||||
|
]
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user