nerdexam
Huawei

H13-821_V3.0 · Question #69

In Kubernetes Deployment, you can specify the number of copies of a specific pod. When the number of pods in the entire cluster is less than a thousand copies, kBs will automatically create the…

The correct answer is A. TRUE. Option A is correct because Kubernetes Deployments work through a control loop: you declare a desired replica count in the Deployment spec, and the underlying ReplicaSet controller continuously compares the actual number of running pods against that desired number. Whenever the…

Compute and Container Solution Design on Huawei Cloud

Question

In Kubernetes Deployment, you can specify the number of copies of a specific pod. When the number of pods in the entire cluster is less than a thousand copies, kBs will automatically create the missing POD

Options

  • ATRUE
  • BFALSE

How the community answered

(27 responses)
  • A
    85% (23)
  • B
    15% (4)

Explanation

Option A is correct because Kubernetes Deployments work through a control loop: you declare a desired replica count in the Deployment spec, and the underlying ReplicaSet controller continuously compares the actual number of running pods against that desired number. Whenever the actual count falls below the desired count - due to node failure, manual deletion, or any other cause - the controller automatically schedules new pods to restore the desired state. Option B is incorrect because Kubernetes does not require manual intervention to recreate missing pods; self-healing through automatic reconciliation is a core guarantee of the Deployment controller.

Memory tip: Think of a Deployment's replica count as a thermostat setting. Just as a thermostat kicks in whenever the temperature drops below the set point, Kubernetes kicks in whenever the pod count drops below the specified replicas, always working to restore the desired state.

Topics

#Kubernetes Deployment#Pod Replication#Self-healing#Container Orchestration

Community Discussion

No community discussion yet for this question.

Full H13-821_V3.0 Practice