
Ultimate access to all questions.
You are troubleshooting problems in your production application running on Google Kubernetes Engine (GKE). You identified that the issue stems from a recently updated container image, though the specific code change remains unknown. The deployment currently uses the latest tag. How should you modify your cluster to run a known working version of the container?
A
Create a new tag called stable that points to the previously working container, and change the deployment to point to the new tag.
B
Alter the deployment to point to the sha256 digest of the previously working container.
C
Build a new container from a previous Git tag, and do a rolling update on the deployment to the new container.
D
Apply the latest tag to the previous container image, and do a rolling update on the deployment.