adds new root ca
This commit is contained in:
parent
3f1d2cbf61
commit
b158ccf1a7
@ -25,12 +25,13 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
workspace = pwd()
|
||||
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
|
||||
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getCurrentRootCA())
|
||||
writeFile(file: workspace + "/test-chamber-13.lan.ret.root.crt", text: functions.getRetiredRootCA())
|
||||
dockerFile = """FROM ${repository}/dockerhub/gitea/gitea:latest-rootless
|
||||
|
||||
USER root
|
||||
|
||||
COPY test-chamber-13.lan.root.crt /usr/local/share/ca-certificates/test-chamber-13.lan.root.crt
|
||||
COPY test-chamber-13.lan.root.crt test-chamber-13.lan.ret.root.crt /usr/local/share/ca-certificates/
|
||||
|
||||
RUN apk add --no-cache --virtual=.packagecache ca-certificates && \\
|
||||
update-ca-certificates --fresh && \\
|
||||
|
@ -44,7 +44,7 @@ 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())
|
||||
//writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -54,7 +54,7 @@ COPY ./kaniko-chain.crt /kaniko/ssl/certs/ca-certificates.crt
|
||||
container ("kaniko") {
|
||||
script {
|
||||
sh """
|
||||
printf '%s\\n' "${functions.getLocalRootCA()}" >> /kaniko/ssl/certs/ca-certificates.crt
|
||||
printf '%s\\n' "${functions.getCurrentRootCA()}" "${functions.getRetiredRootCA()}" >> /kaniko/ssl/certs/ca-certificates.crt
|
||||
cp "/kaniko/ssl/certs/ca-certificates.crt" "${workspace}/kaniko-chain.crt"
|
||||
"""
|
||||
}
|
||||
|
Reference in New Issue
Block a user