nerdexam
Linux_Foundation

KCNA · Question #5

What is a probe within Kubernetes?

The correct answer is C. A diagnostic performed periodically by the kubelet on a container.. In Kubernetes, a probe is a diagnostic mechanism performed periodically by the kubelet on a container to determine its health or readiness.

Submitted by femi9· May 4, 2026Kubernetes Fundamentals

Question

What is a probe within Kubernetes?

Options

  • AA monitoring mechanism of the Kubernetes API.
  • BA pre-operational scope issued by the kubectl agent.
  • CA diagnostic performed periodically by the kubelet on a container.
  • DA logging mechanism of the Kubernetes API.

How the community answered

(56 responses)
  • A
    2% (1)
  • B
    5% (3)
  • C
    89% (50)
  • D
    4% (2)

Why each option

In Kubernetes, a probe is a diagnostic mechanism performed periodically by the kubelet on a container to determine its health or readiness.

AA monitoring mechanism of the Kubernetes API.

Probes are for container health, not for monitoring the Kubernetes API itself.

BA pre-operational scope issued by the kubectl agent.

Probes are configured as part of a Pod definition and executed by the kubelet, not issued by a `kubectl` agent as a pre-operational scope.

CA diagnostic performed periodically by the kubelet on a container.Correct

The kubelet performs probes periodically on containers to check their health. There are three types: liveness probes determine if a container is running, readiness probes determine if a container is ready to serve traffic, and startup probes determine if an application within a container has started successfully.

DA logging mechanism of the Kubernetes API.

Probes are diagnostic mechanisms for health, distinct from logging mechanisms which capture output from applications.

Concept tested: Kubernetes Probes (Liveness, Readiness, Startup)

Source: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes

Topics

#Probes#Kubelet#Container Health#Health Checks

Community Discussion

No community discussion yet for this question.

Full KCNA Practice