...

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

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

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

View as plain text