
Explanation:
The requirement is to release a new version of the application on Google Kubernetes Engine (GKE) with the ability to instantly roll back to the previous version if issues arise. This necessitates a deployment model that allows for immediate traffic switching without gradual transitions.
For GKE, blue/green deployment can be implemented using Kubernetes services and ingress controllers to manage traffic routing, ensuring rapid fallback. The other options do not guarantee instant rollback, making D the best choice.
Ultimate access to all questions.
Which deployment strategy in Google Kubernetes Engine (GKE) should you implement to enable immediate rollback to a previous application version when issues arise with a new deployment?
A
Perform a rolling deployment, and test your new application after the deployment is complete.
B
Perform A/B testing, and test your application periodically after the deployment is complete.
C
Perform a canary deployment, and test your new application periodically after the new version is deployed.
D
Perform a blue/green deployment, and test your new application after the deployment is complete.
No comments yet.