Courseiva
Kubernetes FundamentalsmediumMultiple SelectObjective-mapped

KCNA Kubernetes Fundamentals Practice Question

Which TWO statements correctly describe the purpose of etcd in a Kubernetes cluster?

⚠ Common exam trap

CNCF often tests the distinction between the component that stores state (etcd) and the components that use that state (scheduler, controller manager, API server), so the trap here is confusing etcd's role as a passive data store with the active management functions of other control plane components.

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

It stores the cluster state, including all Kubernetes objects.

Etcd is the primary data store for all Kubernetes cluster state, including the configuration and status of every Kubernetes object (Pods, Services, Deployments, etc.). It stores this information as key-value pairs, and the Kubernetes API server is the only component that reads from and writes to etcd directly. Without etcd, the cluster would have no persistent record of its desired or current state.

Answer analysis

Option-by-option breakdown

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

  • It stores the cluster state, including all Kubernetes objects.

    Why this is correct

    etcd is the backing store for all cluster data.

  • It manages network rules for Pod-to-Pod communication.

    Why it's wrong here

    Network rules are managed by kube-proxy and network plugins.

  • It schedules Pods onto nodes based on resource availability.

    Why it's wrong here

    Scheduling is the job of kube-scheduler.

  • It exposes the Kubernetes API for external access.

    Why it's wrong here

    The API server exposes the API, not etcd.

  • It is a distributed key-value store that provides high availability and consistency.

    Why this is correct

    etcd is designed for distributed consistency and high availability.

About these practice questions

Courseiva writes every KCNA question from scratch — 833 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 KCNA 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 KCNA exam.