diff --git a/Jenkinsfile b/Jenkinsfile index 051c7f0a5cd9dc63f463f03fd8d3ff6a303d8d49..14fb862966237ad829157db6483121280b2d7634 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -35,9 +35,9 @@ buildDiscarder(logRotator(numToKeepStr: '10')) } - triggers { + triggers { // build once a week to keep up with parents images updates - cron('H H * * H') + cron('H H * * H') } stages { @@ -88,33 +88,33 @@ stage('Deploy to cluster') { agent { kubernetes { - label 'kubedeploy-agent-' + env.JOB_NAME.replaceAll("/", "-") + label 'kubedeploy-agent' yaml ''' - apiVersion: v1 - kind: Pod - spec: - containers: - - name: kubectl - image: eclipsefdn/kubectl:okd-c1 - command: - - cat - tty: true - resources: - limits: - cpu: 1 - memory: 1Gi - volumeMounts: - - mountPath: "/home/default/.kube" - name: "dot-kube" - readOnly: false - - name: jnlp - resources: - limits: - cpu: 1 - memory: 1Gi - volumes: - - name: "dot-kube" - emptyDir: {} + apiVersion: v1 + kind: Pod + spec: + containers: + - name: kubectl + image: eclipsefdn/kubectl:okd-c1 + command: + - cat + tty: true + resources: + limits: + cpu: 1 + memory: 1Gi + volumeMounts: + - mountPath: "/home/default/.kube" + name: "dot-kube" + readOnly: false + - name: jnlp + resources: + limits: + cpu: 1 + memory: 1Gi + volumes: + - name: "dot-kube" + emptyDir: {} ''' } }