...

Text file src/github.com/linkerd/linkerd2/cli/cmd/testdata/inject_emojivoto_cronjob.golden.yml

Documentation: github.com/linkerd/linkerd2/cli/cmd/testdata

     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          labels:
    14            foo: bar
    15        spec:
    16          containers:
    17          - args:
    18            - /bin/sh
    19            - -c
    20            - date; echo Hello from the Kubernetes cluster
    21            image: busybox
    22            name: hello
    23          restartPolicy: OnFailure
    24  schedule: '*/10 * * * *'
    25---

View as plain text