Created
September 19, 2018 16:05
-
-
Save alanbchristie/751351d54b21389ce7ca7f0784210b37 to your computer and use it in GitHub Desktop.
Simple OpenShift Job Template (with a volume)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# A minimal OpenShift template | |
# to create a BusyBox container with | |
# a volume claim that can be used to | |
# launch a Job and inspect a PVC. | |
# | |
# Create with: | |
# oc process -p PVC_CLAIM_NAME=my-claim -f busy-job.yaml | oc create -f - | |
# Destroy with: | |
# oc delete job --selector template=busy-job | |
kind: Template | |
apiVersion: v1 | |
metadata: | |
name: busy-job | |
labels: | |
template: busy-job | |
parameters: | |
- name: PVC_CLAIM_NAME | |
value: busy-job-claim | |
objects: | |
- kind: Job | |
apiVersion: batch/v1 | |
metadata: | |
name: busy-job | |
spec: | |
replicas: 1 | |
selector: | |
name: busy-job | |
template: | |
metadata: | |
labels: | |
name: busy-job | |
spec: | |
containers: | |
- image: busybox | |
name: busy-job | |
command: | |
- "sh" | |
- "-c" | |
- "tail -f /dev/null" | |
volumeMounts: | |
- name: busy-job-vol | |
mountPath: /test | |
volumes: | |
- name: busy-job-vol | |
persistentVolumeClaim: | |
claimName: ${{PVC_CLAIM_NAME}} | |
restartPolicy: Never |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment