You need to schedule a task that runs every day at 2:00 AM. The task should be allowed to run even if a previous instance is still running. Which concurrencyPolicy should you set in the CronJob spec?
Allow permits concurrent runs, so if a previous instance is still running, a new one can start.
Why this answer
Option B is correct. concurrencyPolicy: Allow permits multiple Job instances to run concurrently. Forbid prevents new runs if any is currently running. Replace kills the current run and starts a new one.
The default is Allow, but explicitly setting Allow is better for clarity.