- Home
- All questions
- Question 643
CKA study material · question 643 of 1000
A StatefulSet with 5 replicas has updateStrategy.rollingUpdate.partition set to 3 when its template changes. Which Pods are updated?
Show the answer
Answer: B. web-3 and web-4
A partition updates only the Pods whose ordinal is at or above its value, which is how a canary is staged on the highest-numbered replicas first.
Source: StatefulSets (Kubernetes) — Update strategies › Partitioned rolling updates