...

Text file src/github.com/linkerd/linkerd2/cli/cmd/testdata/inject_emojivoto_cronjob_nometa.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        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---

View as plain text