During a release, engineers want a live stream of Pod phase changes without repeatedly re-running get. Which kubectl feature fits?
Select an answer to reveal the explanation.
Short Explanation
Watch mode is like leaving the status board on auto-refresh. kubectl get pods -w streams phase and field changes as the release rolls. You see Pending → Running (or CrashLoop) without hammering the enter key.
Full Explanation
The -w/--watch flag on kubectl get streams resource version updates as objects change, which is useful during rollouts and incident response. explain loops, discarding output, or checkpointing the API server are not substitutes for watch-based monitoring.