ceph-csi/deploy/jjb-deploy.yaml
Rakshith R e6c04e1414 ci: set ttlSecondsAfterFinished=10 to ensure job status can be checked
Signed-off-by: Rakshith R <rar@redhat.com>
2021-08-09 14:47:18 +00:00

54 lines
1.4 KiB
YAML

---
kind: Template
apiVersion: template.openshift.io/v1
metadata:
name: my-template
objects:
- apiVersion: batch/v1
kind: Job
metadata:
labels:
app: jjb
jjb/session: "${SESSION}"
name: jjb-deploy
spec:
ttlSecondsAfterFinished: 10
backoffLimit: 1
template:
metadata:
labels:
app: jjb-deploy
jjb/session: "${SESSION}"
spec:
containers:
- name: jjb
image: image-registry.openshift-image-registry.svc:5000/ceph-csi/jjb:latest
env:
- name: GIT_REPO
value: "${GIT_REPO}"
- name: GIT_REF
value: "${GIT_REF}"
- name: MAKE_TARGET
value: deploy
volumeMounts:
- name: etc-jj
mountPath: /etc/jenkins_jobs
readOnly: true
volumes:
- name: etc-jj
configMap:
name: jenkins-jobs
restartPolicy: Never
parameters:
- name: SESSION
description: unique ID for the session to track the pod for the job
required: true
- name: GIT_REF
description: the git branch or other ref to checkout and deploy
value: ci/centos
required: false
- name: GIT_REPO
description: the git repo or other fork to checkout and deploy
value: https://github.com/ceph/ceph-csi
required: false