move to support new registry.
This commit is contained in:
parent
c81f9b0810
commit
0f4cf2e2d5
@ -21,9 +21,9 @@ UOemMEg3PjcKNsN65W2WVon5HIZx2XVfGRPjf5ZTVWzZ
|
||||
"""
|
||||
|
||||
podTemplate(
|
||||
label: label,
|
||||
name: "pipeline-worker",
|
||||
yaml: """---
|
||||
label: label,
|
||||
name: "pipeline-worker",
|
||||
yaml: """---
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
@ -38,21 +38,44 @@ spec:
|
||||
- /busybox/cat
|
||||
""",
|
||||
) {
|
||||
node (label) {
|
||||
def workspace = pwd()
|
||||
node (label) {
|
||||
def workspace = pwd()
|
||||
|
||||
stage("Build Alpine with CA") {
|
||||
container("kaniko") {
|
||||
def DF = """FROM alpine:latest
|
||||
stage ("Prepare Kaniko") {
|
||||
container ("kaniko") {
|
||||
withCredentials([usernameColonPassword(
|
||||
credentialsId: repositoryCreds,
|
||||
variable: "dCreds",
|
||||
)]) {
|
||||
def dockerJSON = """{
|
||||
"auths": {
|
||||
"registry.test-chamber-13.lan:5000": {
|
||||
"auth": "${dcreds.bytes.encodeBase64().toString()}"
|
||||
}
|
||||
}
|
||||
}"""
|
||||
sh """
|
||||
set +x
|
||||
echo '${dockerJSON}' > /kaniko/.docker/config.json
|
||||
printf '%s\\n' "${caContent}" >> /kaniko/ssl/certs/ca-certificates.crt
|
||||
set -x
|
||||
"""
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage("Build Alpine with CA") {
|
||||
container("kaniko") {
|
||||
def DF = """FROM alpine:latest
|
||||
COPY ${caName} /usr/local/share/ca-certificates/
|
||||
RUN apk add --no-cache --virtual=.packagecache ca-certificates && \\
|
||||
update-ca-certificates --fresh && \\
|
||||
apk del .packagecache
|
||||
update-ca-certificates --fresh && \\
|
||||
apk del .packagecache
|
||||
"""
|
||||
writeFile(file: workspace + "/" + caName, text: caContent)
|
||||
writeFile(file: workspace + "/Dockerfile", text: DF)
|
||||
sh "/kaniko/executor --cleanup --insecure --skip-tls-verify --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${pushRepo}/alpine:latest\""
|
||||
}
|
||||
}
|
||||
}
|
||||
writeFile(file: workspace + "/" + caName, text: caContent)
|
||||
writeFile(file: workspace + "/Dockerfile", text: DF)
|
||||
sh "/kaniko/executor --cleanup --skip-tls-verify --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${pushRepo}/nhyatt/alpine:latest\""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user