1apiVersion: batch/v1beta1 2kind: CronJob 3metadata: 4 name: hello 5 namespace: emojivoto 6spec: 7 jobTemplate: 8 spec: 9 template: 10 metadata: 11 annotations: 12 linkerd.io/inject: enabled 13 spec: 14 containers: 15 - args: 16 - /bin/sh 17 - -c 18 - date; echo Hello from the Kubernetes cluster 19 image: busybox 20 name: hello 21 restartPolicy: OnFailure 22 schedule: '*/10 * * * *' 23---