that expiriment failed, reverting

This commit is contained in:
Hyatt 2022-04-01 17:49:47 -05:00
parent 8f86d83732
commit 4b9592b0b0
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -22,26 +22,31 @@ pipeline {
}
stages {
steps {
script {
stage ('Initalize Jenkins') {
stage ('Initalize Jenkins') {
steps {
script {
workspace = pwd()
ubiOS = ["8"]
ubiImages = ["ubi-minimal", "ubi"]
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
}
}
}
for (rhOS in ubiOS) {
for (image in ubiImages) {
stage ("Build ubi${rhOS}:${image}") {
def updateCmd
if (image == "ubi-minimal") {
updateCmd = "microdnf"
} else {
updateCmd = "dnf"
}
dockerFile = """FROM registry.access.redhat.com/ubi${rhOS}/${image}:latest
stage ('Build Images') {
steps {
script {
for (rhOS in ubiOS) {
for (image in ubiImages) {
stage ("Build ubi${rhOS}:${image}") {
def updateCmd
if (image == "ubi-minimal") {
updateCmd = "microdnf"
} else {
updateCmd = "dnf"
}
dockerFile = """FROM registry.access.redhat.com/ubi${rhOS}/${image}:latest
LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
LABEL org.opencontainers.image.title="ubi${rhOS}/${image}"
@ -54,19 +59,20 @@ RUN update-ca-trust extract && \\
${updateCmd} update -y && \\
${updateCmd} clean all
"""
container ("kaniko") {
declarativeFunctions.buildContainerMultipleDestinations(
dockerFile: dockerFile,
repositoryAccess: [
[
repository: repository,
credentials: repositoryCreds
container ("kaniko") {
declarativeFunctions.buildContainerMultipleDestinations(
dockerFile: dockerFile,
repositoryAccess: [
[
repository: repository,
credentials: repositoryCreds
],
],
],
destination: [
"${repository}/library/rhubi/${image}:${rhOS}",
]
)
destination: [
"${repository}/library/rhubi/${image}:${rhOS}",
]
)
}
}
}
}
@ -74,4 +80,4 @@ RUN update-ca-trust extract && \\
}
}
}
}
}