github.com/argoproj/argo-cd/v2@v2.10.9/resource_customizations/argoproj.io/CronWorkflow/actions/testdata/cronworkflow-without-label.yaml (about)

     1  apiVersion: argoproj.io/v1alpha1
     2  kind: CronWorkflow
     3  metadata:
     4    annotations:
     5      cronworkflows.argoproj.io/last-used-schedule: CRON_TZ=America/Los_Angeles * * * * *
     6    name: hello-world
     7    namespace: default
     8  spec:
     9    concurrencyPolicy: Replace
    10    failedJobsHistoryLimit: 4
    11    schedule: '* * * * *'
    12    startingDeadlineSeconds: 0
    13    successfulJobsHistoryLimit: 4
    14    suspend: true
    15    timezone: America/Los_Angeles
    16    workflowSpec:
    17      entrypoint: whalesay
    18      templates:
    19        - container:
    20            args:
    21              - "\U0001F553 hello world. Scheduled on: {{workflow.scheduledTime}}"
    22            command:
    23              - cowsay
    24            image: 'docker/whalesay:latest'
    25          name: whalesay
    26    workflowMetadata:
    27      labels:
    28        example: test
    29      annotations:
    30        another-example: another-test
    31      finalizers: [test-finalizer]