convert to declarative pipeline

This commit is contained in:
Hyatt 2022-04-01 17:02:55 -05:00
parent 4b1e2cdfa2
commit 6499abf057
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -1,76 +1,63 @@
def label = "jenkins-${UUID.randomUUID().toString()}" #!groovy
def repository = "registry.c.test-chamber-13.lan" def repository = "registry.c.test-chamber-13.lan"
def kanikoImage = "${repository}/library/kaniko:latest"
def repositoryCreds = "harbor-repository-creds" def repositoryCreds = "harbor-repository-creds"
podTemplate( def workspace
label: label, def dockerFile
name: "pipeline-worker",
yaml: """---
apiVersion: v1
kind: Pod
spec:
containers:
- name: kaniko
image: ${kanikoImage}
tty: true
command:
- /busybox/cat
""",
) {
node (label) {
def workspace = pwd()
stage ("Prepare Kaniko") { def label = "kubernetes-${UUID.randomUUID().toString()}"
container ("kaniko") { def templateName = "pipeline-worker"
withCredentials([usernameColonPassword( pipeline {
credentialsId: repositoryCreds, agent {
variable: "dCreds", kubernetes {
)]) { yaml functions.podYaml(
def dockerJSON = """{ repo: repository,
"auths": { templateName: templateName,
"${repository}": { kaniko: true
"auth": "${dcreds.bytes.encodeBase64().toString()}" )
} }
} }
}"""
sh """
set +x
echo '${dockerJSON}' > /kaniko/.docker/config.json
"""
}
}
}
stage("Kaniko Build & Push") { stages {
container ("kaniko") { stage ('Initalize Jenkins') {
def dockerfile = """ steps {
script {
workspace = pwd()
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
def dockerfile = """
FROM ${repository}/dockerhub/sonarsource/sonar-scanner-cli:latest FROM ${repository}/dockerhub/sonarsource/sonar-scanner-cli:latest
USER root USER root
RUN printf '%s\\n' "-----BEGIN CERTIFICATE-----" \\ COPY test-chamber-13.lan.root.crt /usr/local/share/ca-certificates/test-chamber-13.lan.root.crt
"MIICLTCCAbOgAwIBAgIDAYagMAoGCCqGSM49BAMEME0xCzAJBgNVBAYTAlVTMScw" \\ RUN update-ca-certificates --fresh
"JQYDVQQKDB5UZXN0IENoYW1iZXIgMTMgVHJ1c3QgU2VydmljZXMxFTATBgNVBAMM" \\
"DFRDMTMgUm9vdCBSMTAgFw0xOTAxMDEwMDAwMDBaGA8yMDUwMDEwMTAwMDAwMFow" \\
"TTELMAkGA1UEBhMCVVMxJzAlBgNVBAoMHlRlc3QgQ2hhbWJlciAxMyBUcnVzdCBT" \\
"ZXJ2aWNlczEVMBMGA1UEAwwMVEMxMyBSb290IFIxMHYwEAYHKoZIzj0CAQYFK4EE" \\
"ACIDYgAE8+/J1ECc0VHxTtGXFLnHJ3NGZ2SW38pp9wI58L5EQbHRLiezYuvkUbI/" \\
"XGJjLnFdpgjo7W1FFlyhx5ITlCstUX5Sn9bLZiA0+mE0n6b8VwhXwkHlnIeRo7od" \\
"Zu/OfSFjo2MwYTAdBgNVHQ4EFgQUrGqUJhyRp93wXF645VNtYatRk/AwHwYDVR0j" \\
"BBgwFoAUrGqUJhyRp93wXF645VNtYatRk/AwDwYDVR0TAQH/BAUwAwEB/zAOBgNV" \\
"HQ8BAf8EBAMCAYYwCgYIKoZIzj0EAwQDaAAwZQIxAJdgskimDJkf/MGVRrKotmNC" \\
"xdH/UVQfQppjIR9FAiGeFDr47thclYrzIL6yCkV7nwIwYjf3MbOm/yWblzqe3Uyw" \\
"UOemMEg3PjcKNsN65W2WVon5HIZx2XVfGRPjf5ZTVWzZ" \\
"-----END CERTIFICATE-----" > /usr/local/share/ca-certificates/test-chamber-13.lan.root.crt && \\
update-ca-certificates --fresh
USER scanner-cli USER scanner-cli
""" """
writeFile (file: workspace + "/Dockerfile", text: dockerfile) }
sh "/kaniko/executor --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${repository}/library/sonarscanner:latest\"" }
} }
}
} stage ('Build & Push') {
} steps {
container ('kaniko') {
script {
declarativeFunctions.buildContainerMultipleDestinations(
dockerFile: dockerFile,
repositoryAccess: [
[
repository: repository,
credentials: repositoryCreds
],
],
destination: [
"${repository}/library/sonarscanner:latest",
]
)
}
}
}
}
}
}