Skip to content

Argo CronWorkflows example

Scenario

Deploy a scheduled batch job using helm/argo-cron-workflows.

Command

helm upgrade --install nightly-job ./helm/argo-cron-workflows \
  -n demo --create-namespace \
  --set name=nightly-job \
  --set image.repository=ghcr.io/meow-developer/iron-nightly \
  --set image.tag=v0.1.0 \
  --set schedule="0 2 * * *"

Expected result

  • An argoproj.io/CronWorkflow is created.
  • The workflow runs on schedule and produces Argo logs.

Next: Getting Started · Reference · Changelog · Support