Public-health sees error spikes mid-rollout on a vaccination-status API and must stop further Pod replacements without undoing what already shipped. Which Deployment control fits?
Select an answer to reveal the explanation.
Short Explanation
Pause is the yellow light on a road crew—stop advancing the work zone without ripping out what is already paved. rollout pause freezes further replacements; resume continues when it is safe.
Full Explanation
kubectl rollout pause stops a Deployment from creating additional new Pods for the in-progress update while leaving already updated Pods in place; rollout resume continues. Deleting the Namespace or forcing unrelated Recreate behavior is destructive or incorrect. Removing HPA does not pause a Deployment rollout.