Problem Statement
Which command allows you to pause a Deployment rollout for inspection and resume it later?
Explanation
You can pause a rollout using `kubectl rollout pause deployment/<name>` to stop applying changes mid-update, inspect behavior and then resume with `kubectl rollout resume`. This is useful when you want to verify a new version before full deployment.
