Advanced Kubernetes
Q81 / 100

How does the Kubernetes "reconciliation loop" (control loop) pattern work, as implemented by controllers?

Correct! Well done.

Incorrect.

The correct answer is B) Controllers continuously watch the current state of resources via the API server, compare it to the desired state defined in specs, and take corrective actions to converge the current state toward the desired state, repeating indefinitely

B

Correct Answer

Controllers continuously watch the current state of resources via the API server, compare it to the desired state defined in specs, and take corrective actions to converge the current state toward the desired state, repeating indefinitely

Explanation

This control loop pattern (observe, diff, act, repeat) is fundamental to Kubernetes — e.g. the Deployment controller continuously ensures the actual number of Pods matches the desired replica count.

Progress
81/100