A grant-tracking API needs a temporary debug image. How should the application developer change what the Pods run?
Select an answer to reveal the explanation.
Short Explanation
Want a debug build? Change the Deployment's image field—like swapping the film in a camera—and let Kubernetes roll new Pods. No SSH scavenger hunt across nodes required.
Full Explanation
The supported application change is updating spec.template.spec.containers[].image on the Deployment (or equivalent workload) so a rolling update creates Pods with the new image. Node SSH, etcd edits, and hostPath binary overlays bypass Kubernetes' declarative model and are not CKAD app practices.