changes to declarative pipeline

This commit is contained in:
Hyatt 2022-04-01 09:33:37 -05:00
parent a212c573dc
commit 3916c5c6b4
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -3,7 +3,29 @@
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}/dockerhub/library/php:apache 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
)
}
}
stages {
stage ('Initalize Jenkins') {
steps {
script {
workspace = pwd()
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
dockerFile = """FROM ${repository}/dockerhub/library/php:apache
LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>" LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
@ -16,28 +38,29 @@ RUN apt-get update && \\
rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* && \\ rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* && \\
docker-php-ext-install mysqli docker-php-ext-install mysqli
""" """
}
}
}
def label = "kubernetes-${UUID.randomUUID().toString()}" stage ('Build & Push') {
def templateName = "pipeline-worker" steps {
podTemplate( container ('kaniko') {
label: label, script {
name: templateName, declarativeFunctions.buildContainerMultipleDestinations(
yaml: functions.podYaml( dockerFile: dockerFile,
repo: repository, repositoryAccess: [
templateName: templateName, [
kaniko: true repository: "registry.hub.docker.com",
) credentials: "dockerhub-repository-creds"
) { ],
node (label) { ],
def workspace = pwd() destination: [
"registry.hub.docker.com/thespider/php-mysqli:latest",
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA()) ]
)
functions.buildContainer( }
repository: "registry.hub.docker.com", }
imageDest: "registry.hub.docker.com/thespider/php-mysqli:latest", }
dockerFile: dockerFile, }
repoCreds: "dockerhub-repository-creds",
)
} }
} }