Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---
- apiVersion: batch/v1beta1
- kind: CronJob
- metadata:
- name: foobar
- namespace: default
- labels:
- app: foobar
- spec:
- schedule: "*/5 * * * *"
- successfulJobsHistoryLimit: 1
- failedJobsHistoryLimit: 2
- suspend: false
- concurrencyPolicy: Forbid
- jobTemplate:
- spec:
- template:
- spec:
- imagePullSecrets:
- - name: custom-registry
- restartPolicy: Never
- securityContext:
- runAsUser: 33
- fsGroup: 33
- containers:
- - name: foobar
- image: myimage:master
- imagePullPolicy: IfNotPresent
- args:
- - php
- - /app/run.php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement