Skip to content

Instantly share code, notes, and snippets.

@knil-sama
Last active July 2, 2018 22:42
Show Gist options
  • Select an option

  • Save knil-sama/3aa308aa1744cb0084e670a98f094f71 to your computer and use it in GitHub Desktop.

Select an option

Save knil-sama/3aa308aa1744cb0084e670a98f094f71 to your computer and use it in GitHub Desktop.
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: test
spec:
schedule: "30 16,17,18,19 * * *"
concurrencyPolicy: "Forbid"
failedJobsHistoryLimit: 10
startingDeadlineSeconds: 600 # 10 min
jobTemplate:
spec:
backoffLimit: 0
activeDeadlineSeconds: 3300 # 55min
template:
spec:
containers:
- name: hello
image: python:3.6-slim
command: ["python"]
args: ["/usr/src/app/job_offers.py"]
restartPolicy: Never
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment