Skip to content

Latest commit

 

History

History

cronjob

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Cronjobs

apiVersion: batch/v1
kind: CronJob
metadata:
  name: hello
spec:
  schedule: "* * * * *"
  jobTemplate:
    spec:
      template:
        spec:
          containers:
          - name: hello
            image: busybox:1.28
            imagePullPolicy: IfNotPresent
            command:
            - /bin/sh
            - -c
            - date; echo Hello from the Kubernetes cluster
          restartPolicy: OnFailure
watch kubectl get jobs,pods,cj