move to declarative pipeline

This commit is contained in:
Hyatt 2022-03-30 11:32:09 -05:00
parent 3a57700d10
commit e6523afd24
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -14,50 +14,73 @@
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 = """FROM ${repository}/google/kaniko-project/executor:debug def workspace
def dockerFile
LABEL maintainer="The_Spider <spider@smoothnet.org>"
COPY ./kaniko-chain.crt /kaniko/ssl/certs/ca-certificates.crt
"""
def label = "kubernetes-${UUID.randomUUID().toString()}" def label = "kubernetes-${UUID.randomUUID().toString()}"
def templateName = "pipeline-worker" def templateName = "pipeline-worker"
podTemplate ( pipeline {
label: label, agent {
name: templateName, kubernetes {
yaml: functions.podYaml( yaml functions.podYaml(
repo: repository, repo: repository,
templateName: templateName, templateName: templateName,
[ kaniko: true
[
name: "kaniko",
path: "${repository}/google/kaniko-project/executor:debug",
command: "/busybox/sh"
]
]
) )
){ }
node (label) { }
def workspace = pwd()
stages {
stage ('Initalize Jenkins') {
steps {
script {
workspace = pwd()
dockerFile = """FROM ${repository}/google/kaniko-project/executor:debug
LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
LABEL org.opencontainers.image.title="kaniko"
LABEL org.opencontainers.image.description="Docker container for building docker containers"
LABEL org.opencontainers.image.base.name="gcr.io/kaniko-project/executor:debug"
COPY ./kaniko-chain.crt /kaniko/ssl/certs/ca-certificates.crt
"""
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA()) writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
}
}
}
stage ("Add Cert to Kaniko") { stage ("Add Cert to Kaniko") {
steps {
container ("kaniko") { container ("kaniko") {
def localRootCA = functions.getLocalRootCA() script {
sh """ sh """
printf '%s\\n' "${localRootCA}" >> /kaniko/ssl/certs/ca-certificates.crt printf '%s\\n' "${functions.getLocalRootCA()}" >> /kaniko/ssl/certs/ca-certificates.crt
cp "/kaniko/ssl/certs/ca-certificates.crt" "${workspace}/kaniko-chain.crt" cp "/kaniko/ssl/certs/ca-certificates.crt" "${workspace}/kaniko-chain.crt"
""" """
} }
} }
}
}
functions.buildContainer( stage ('Build & Push') {
repository: repository, steps {
imageDest: "${repository}/library/kaniko:latest", container ('kaniko') {
script {
declarativeFunctions.buildContainerMultipleDestinations(
dockerFile: dockerFile, dockerFile: dockerFile,
repoCreds: repositoryCreds, repositoryAccess: [
[
repository: repository,
credentials: repositoryCreds
],
],
destination: [
"${repository}/library/kaniko:latest",
]
) )
} }
} }
}
}
}
}