Skip to content

Instantly share code, notes, and snippets.

@skymoore
Created July 9, 2022 04:10
Show Gist options
  • Save skymoore/4a4760765af0e54b782841043b63702b to your computer and use it in GitHub Desktop.
Save skymoore/4a4760765af0e54b782841043b63702b to your computer and use it in GitHub Desktop.
hello world kubernetes cron job
---
apiVersion: batch/v1
kind: CronJob
metadata:
name: my-cron-job
spec:
schedule: "*/5 * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: cronified
image: alpine
command: ["echo", "Hello World!"]
restartPolicy: Never
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment