github.com/argoproj/argo-cd/v2@v2.10.9/resource_customizations/argoproj.io/CronWorkflow/actions/testdata/cronworkflow.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    labels:
     7      workflows.argoproj.io/controller-instanceid: test-instance
     8      app.kubernetes.io/instance: test
     9    name: hello-world
    10    namespace: default
    11  spec:
    12    concurrencyPolicy: Replace
    13    failedJobsHistoryLimit: 4
    14    schedule: '* * * * *'
    15    startingDeadlineSeconds: 0
    16    successfulJobsHistoryLimit: 4
    17    suspend: true
    18    timezone: America/Los_Angeles
    19    workflowSpec:
    20      entrypoint: whalesay
    21      templates:
    22        - container:
    23            args:
    24              - "\U0001F553 hello world. Scheduled on: {{workflow.scheduledTime}}"
    25            command:
    26              - cowsay
    27            image: 'docker/whalesay:latest'
    28          name: whalesay
    29    workflowMetadata:
    30      labels:
    31        example: test
    32      annotations:
    33        another-example: another-test
    34      finalizers: [test-finalizer]