A Kustomize overlay must bump a Deployment’s container image tag without hand-editing every base YAML file. Which field is designed for that change?
Select an answer to reveal the explanation.
Short Explanation
Think of images: newTag as swapping the shipping label on every crate without unpacking the warehouse. One overlay line retags the container image across matching workloads.
Full Explanation
Kustomize’s images field matches container images by name and rewrites name and/or tag (newName/newTag) in the rendered manifests. That avoids brittle manual edits in base files. replicas, namespace, and secretGenerator solve other problems and do not retarget container images.