removes cosign, not harbor compatable, may need to use did to sign images

This commit is contained in:
Hyatt 2022-01-03 13:23:58 -06:00
parent f62c2ef712
commit ea4117c1de
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -21,10 +21,6 @@ spec:
tty: true
command:
- /busybox/sh
- name: alpine
imagePullPolicy: Always
image: ${repository}/library/alpine:latest
tty: true
""",
) {
node (label) {
@ -78,25 +74,11 @@ spec:
stage("Build Alpine with CA") {
container("kaniko") {
def DF = """FROM ${repository}/google/kaniko-project/executor:debug
COPY ./cosign /usr/local/bin/cosign
COPY ./kaniko-chain.crt /kaniko/ssl/certs/ca-certificates.crt
"""
sh "cp /kaniko/ssl/certs/ca-certificates.crt \"${workspace}/kaniko-chain.crt\""
writeFile(file: workspace + "/Dockerfile", text: DF)
sh "/kaniko/executor --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${repository}/library/kaniko:latest\""
withCredentials([
string(
credentialsId: dockerKeyPass,
variable: "signPass"
),
file(
credentialsId: dockerKey,
variable: "signKey"
)
]) {
sh "COSIGN_PASSWORD=\"${signPass}\" \"${workspace}/cosign\" sign --key \"${signKey}\" \"${repository}/library/kaniko:latest\""
}
}
}
}