Argo Events Calendar Quick Fix - Scheduled Event Source
DodaTech
Updated 2026-06-26
1 min read
Argo Events calendar event source generates events on a schedule using cron expressions. Wrong cron syntax causes events at incorrect times or duplicate events. This guide covers the fix.
Quick Fix
Wrong
calendar:
example:
schedule: "*/5 * * * *"
The issue: no timezone specified (uses UTC), no exclusionDates for holidays, and no persistence for recovery after restarts. Events may run on holidays and drift across DST.
Right
calendar:
example:
schedule: "*/5 * * * *"
timezone: "America/New_York"
exclusionDates:
- "2026-12-25"
- "2026-01-01"
persistence:
name: calendar-state
configMapName: calendar-persistence
# Expected output after applying the fix
# Calendar event source runs every 5 minutes ET
# Excluded dates: 2026-12-25, 2026-01-01 (skipped)
# Persistence stores last run time in ConfigMap
# Recoverable after restarts
Prevention
- Always set
timezonefor local time scheduling - Use
exclusionDatesto skip holidays and maintenance Windows - Configure
persistenceto prevent missed events after restarts - Use cron expression format matching the intended schedule
- Test exclusion dates in staging before production
DodaTech Tools
Doda Browser's calendar event tester simulates event generation for the next month. DodaZIP archives calendar configurations for scheduling documentation. Durga Antivirus Pro monitors schedule anomalies.
FAQ
← Previous
Argo Events SQS Quick Fix - AWS SQS Event Source
Next →
Argo Events Custom Quick Fix - Custom Event Source
Built by the developers of DodaTech
Doda Browser, DodaZIP & Durga Antivirus Pro