From bef7ce93d6d4c0433208d5479a68c82f5d350f26 Mon Sep 17 00:00:00 2001 From: Jim Nicholson Date: Thu, 1 Sep 2022 16:24:08 -0700 Subject: [PATCH] Get past the parser? --- Jenkinsfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 61335e2..9ca3ca5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,10 +7,16 @@ podTemplate( namespace: 'jenkins', podRetention: always, 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: [ - secretVolume: { mountPath: '/kaniko/.docker/config.json', secretName: 'regcred'} ], + secretVolume(mountPath: '/kaniko/.docker/config.json', secretName: 'regcred') + ], workspaceVolume: dynamicPVC() ) {