Get past the parser?
Some checks failed
Homelab/jenkins-container/pipeline/head There was a failure building this commit

This commit is contained in:
Jim Nicholson 2022-09-01 16:24:08 -07:00
parent 64f8120162
commit bef7ce93d6

10
Jenkinsfile vendored
View File

@ -7,10 +7,16 @@ podTemplate(
namespace: 'jenkins', namespace: 'jenkins',
podRetention: always, podRetention: always,
containers: [ containers: [
containerTemplate(name: 'kaniko', image: 'gcr.io/kaniko-project/executor:debug', command: 'sleep', args: '30d') containerTemplate(
name: 'kaniko',
image: 'gcr.io/kaniko-project/executor:debug',
command: 'sleep',
args: '30d'
)
], ],
volumes: [ volumes: [
secretVolume: { mountPath: '/kaniko/.docker/config.json', secretName: 'regcred'} ], secretVolume(mountPath: '/kaniko/.docker/config.json', secretName: 'regcred')
],
workspaceVolume: dynamicPVC() workspaceVolume: dynamicPVC()
) { ) {