mirror of https://github.com/linkerd/linkerd2.git
24 lines
483 B
YAML
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 * * * *'
|
|
---
|