After maintenance, a utility-billing CronJob still has suspend: true and no new Jobs appear. What should the team do?
Select an answer to reveal the explanation.
Short Explanation
suspend: true is the pause button on the alarm clock—the CronJob object is still there, it just will not create new Jobs. Flip suspend to false and the schedule starts ringing again.
Full Explanation
CronJob.spec.suspend prevents creation of new Jobs while leaving the CronJob resource in place. Clearing the flag re-enables scheduled runs. Namespace deletion, DaemonSet conversion, or zeroing startingDeadlineSeconds are not the correct way to resume a suspended CronJob.