Skip to content

Instantly share code, notes, and snippets.

@avaranovich
Created January 15, 2017 16:01
Show Gist options
  • Save avaranovich/c3a5784d08bb7aca42991e27f48314ab to your computer and use it in GitHub Desktop.
Save avaranovich/c3a5784d08bb7aca42991e27f48314ab to your computer and use it in GitHub Desktop.
apiVersion: batch/v2alpha1
kind: CronJob
metadata:
name: hello
spec:
schedule: "*/1 * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: hello
image: busybox
args:
- /bin/sh
- -c
- date; echo Hello from the Kubernetes cluster
restartPolicy: OnFailure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment