- Home
- All questions
- Question 656
CKA study material · question 656 of 1000
A CronJob's run occasionally overruns its schedule, and the new run must cancel the old one. Which concurrencyPolicy does that?
Show the answer
Answer: C. Replace
Replace cancels the Job still running and starts the new one; Forbid would skip the new run instead, and Allow, the default, lets both run together.
Source: CronJob (Kubernetes) — CronJob limitations › Concurrency policy