github.com/argoproj/argo-cd/v2@v2.10.9/resource_customizations/apps.kruise.io/BroadcastJob/testdata/running.yaml (about)

     1  apiVersion: apps.kruise.io/v1alpha1
     2  kind: BroadcastJob
     3  metadata:
     4    name: download-image
     5  spec:
     6    template:
     7      spec:
     8        containers:
     9          - name: guestbook
    10            image: openkruise/guestbook:v3
    11            command: ["echo",  "started"] # a dummy command to do nothing
    12        restartPolicy: Never
    13    completionPolicy:
    14      type: Always
    15      ttlSecondsAfterFinished: 60 # the job will be deleted after 60 seconds
    16  status:
    17    active: 1
    18    desired: 1
    19    failed: 0
    20    phase: running
    21    startTime: '2023-09-17T14:43:30Z'
    22    succeeded: 0