Skip to content

Instantly share code, notes, and snippets.

@uurtech
Created June 5, 2020 09:31
Show Gist options
  • Save uurtech/d8307cd831c6258ad499f1e1720ff86c to your computer and use it in GitHub Desktop.
Save uurtech/d8307cd831c6258ad499f1e1720ff86c to your computer and use it in GitHub Desktop.
Kubernetes cronjob
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: xml-checker
spec:
schedule: "*/5 * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: xml-checker
image: gcr.io/MY_CUSTOM_IMAGE
restartPolicy: OnFailure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment