A building-permits platform wants a controlled image bump through the Deployment controller. Which change correctly triggers a new rollout?
Select an answer to reveal the explanation.
Short Explanation
The Deployment watches the Pod template like a blueprint stamp—change the stamp (image tag and friends) and a new revision rolls out. Tweaking an unrelated Service name does not flip that stamp.
Full Explanation
A Deployment creates a new rollout when its Pod template changes, commonly when the container image or other template fields are updated. Renaming a Service, editing unused ConfigMaps, or only changing revisionHistoryLimit does not by itself trigger a new Pod template revision.