Which THREE are valid ways to perform a rolling update of a Deployment in Kubernetes? (Select THREE.)
Changing the image in the Deployment spec triggers a rolling update.
Why this answer
A rolling update can be triggered by updating the container image, changing the image tag, or modifying a label selector (though changing selector is not recommended). Scaling is not an update.