apiVersion: argoproj.io/v1alpha1
kind: CronWorkflow
metadata:
  name: nightly-etl
  namespace: example-apps
spec:
  schedule: "17 2 * * *"
  timezone: Etc/UTC
  concurrencyPolicy: Replace
  startingDeadlineSeconds: 300
  successfulJobsHistoryLimit: 3
  failedJobsHistoryLimit: 1
  suspend: false
  workflowSpec:
    entrypoint: run
    templates:
      - name: run
        container:
          image: registry.example.invalid/example-org/etl:1.2.0
          args: ["--window=24h"]
