Courseiva
Workloads and SchedulingmediumMultiple ChoiceObjective-mapped

CKA CronJob concurrencyPolicy Practice Question

A CronJob runs every hour. The job takes 45 minutes to complete. What is the default behavior if the next scheduled time occurs while the previous job is still running?

⚠ Common exam trap

The trap in this question is that many candidates mistakenly believe the default concurrencyPolicy for a CronJob is 'Forbid' to prevent resource exhaustion. However, the default is actually 'Allow', meaning overlapping jobs will run concurrently unless explicitly configured otherwise.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The next job starts immediately, running concurrently

By default, CronJobs in Kubernetes have a concurrencyPolicy of 'Allow'. This means that if a new job is scheduled while a previous job is still running, the new job starts immediately and runs concurrently with the previous one. Option C correctly describes this default behavior. If you want to prevent concurrent executions, you must explicitly set concurrencyPolicy to 'Forbid'.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The next job is queued and starts after the previous finishes

    Why it's wrong here

    This is incorrect because the default concurrencyPolicy is 'Forbid', so the next job is not queued; it is skipped entirely.

  • The next job is skipped

    Why it's wrong here

    This is correct. The default concurrencyPolicy is 'Forbid', so overlapping jobs are not allowed and the next scheduled job is skipped if the previous one is still running.

  • The next job starts immediately, running concurrently

    Why this is correct

    This is incorrect. While it is possible to allow concurrent executions by setting concurrencyPolicy to 'Allow', the default is 'Forbid', so concurrent runs are not the default behavior.

  • The CronJob is suspended

    Why it's wrong here

    This is incorrect. Suspending a CronJob is done via the 'suspend' field, not automatically due to overlapping executions.

About these practice questions

Courseiva writes every CKA question from scratch — 302 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This CKA practice question is part of Courseiva's free CNCF certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CKA exam.