Skip to content
Snippets Groups Projects
Commit d2cf732e authored by Mikaël Barbero's avatar Mikaël Barbero :dagger:
Browse files

Jenkinsfile housekeeping

parent ccc44f5c
No related branches found
No related tags found
No related merge requests found
......@@ -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: {}
'''
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment