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 repositoryCreds = "harbor-repository-creds"
def dockerFile = """FROM ${repository}/google/kaniko-project/executor:debug
LABEL maintainer="The_Spider <spider@smoothnet.org>"
COPY ./kaniko-chain.crt /kaniko/ssl/certs/ca-certificates.crt
"""
def workspace
def dockerFile
def label = "kubernetes-${UUID.randomUUID().toString()}"
def templateName = "pipeline-worker"
podTemplate (
label: label,
name: templateName,
yaml: functions.podYaml(
pipeline {
agent {
kubernetes {
yaml functions.podYaml(
repo: repository,
templateName: templateName,
[
[
name: "kaniko",
path: "${repository}/google/kaniko-project/executor:debug",
command: "/busybox/sh"
]
]
kaniko: true
)
){
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())
}
}
}
stage ("Add Cert to Kaniko") {
steps {
container ("kaniko") {
def localRootCA = functions.getLocalRootCA()
script {
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"
"""
}
}
}
}
functions.buildContainer(
repository: repository,
imageDest: "${repository}/library/kaniko:latest",
stage ('Build & Push') {
steps {
container ('kaniko') {
script {
declarativeFunctions.buildContainerMultipleDestinations(
dockerFile: dockerFile,
repoCreds: repositoryCreds,
repositoryAccess: [
[
repository: repository,
credentials: repositoryCreds
],
],
destination: [
"${repository}/library/kaniko:latest",
]
)
}
}
}
}
}
}