linkerd2/cli/cmd/testdata/inject_emojivoto_cronjob_no...

24 lines
483 B
YAML

apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: hello
namespace: emojivoto
spec:
jobTemplate:
spec:
template:
metadata:
annotations:
linkerd.io/inject: enabled
spec:
containers:
- args:
- /bin/sh
- -c
- date; echo Hello from the Kubernetes cluster
image: busybox
name: hello
restartPolicy: OnFailure
schedule: '*/10 * * * *'
---