- Home
- All questions
- Question 644
CKA study material · question 644 of 1000
A StatefulSet has updateStrategy.type set to OnDelete and its Pod template is changed. What happens?
Show the answer
Answer: D. Nothing, until each Pod is deleted manually
With OnDelete the controller does not act on template changes at all; each Pod picks up the new template only when someone deletes it.
Source: StatefulSets (Kubernetes) — Update strategies