Skip to content

Instantly share code, notes, and snippets.

@lvnilesh
Last active November 1, 2023 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lvnilesh/43bc2b704a939a035d2853a38763e204 to your computer and use it in GitHub Desktop.
Save lvnilesh/43bc2b704a939a035d2853a38763e204 to your computer and use it in GitHub Desktop.
cronjob
apiVersion: batch/v1
kind: CronJob
metadata:
name: pi
spec:
schedule: "*/1 * * * *"
jobTemplate:
spec:
template:
metadata:
labels:
parent: "cronjobpi"
spec:
containers:
- name: pi
image: perl
command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]
restartPolicy: OnFailure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment