From dec354a7a51df0e433fc59bc5f4042a74e79ad49 Mon Sep 17 00:00:00 2001 From: Daniel Gyulai Date: Sun, 1 Nov 2020 13:12:52 +0100 Subject: [PATCH] Attempt to fix Jenkinsfile build --- Jenkinsfile | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8246f5e..f069c75 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,8 +1,15 @@ -podTemplate(containers: [ - containerTemplate(name: 'maven', image: 'maven:3.3.9-jdk-8-alpine', ttyEnabled: true, command: 'cat'), - containerTemplate(name: 'golang', image: 'golang:1.8.0', ttyEnabled: true, command: 'cat'), - containerTemplate(name: 'kaniko', image: 'gcr.io/kaniko-project/executor:latest', imagePullPolicy: 'Always', command: '/busybox/cat', ttyEnabled: true) - ]) { +podTemplate(yaml: """ +kind: Pod +spec: + containers: + - name: kaniko + image: gcr.io/kaniko-project/executor:debug-539ddefcae3fd6b411a95982a830d987f4214251 + imagePullPolicy: Always + command: + - /busybox/cat + tty: true +""" + ) { node(POD_LABEL) { stage('Build') {