A weekly parking-citation export must fire on a calendar schedule. Which resource should wrap the batch work?
Select an answer to reveal the explanation.
Short Explanation
Weekly exports are alarm-clock work. A CronJob is the alarm: its schedule wakes a Job template, the Job does the export, and everyone goes back to sleep until next week.
Full Explanation
CronJobs create Jobs on a crontab-like schedule using an embedded Job template. That is the Kubernetes-native pattern for recurring batch exports. Deployments, Services, and PVCs do not provide calendar scheduling for application batch work.