LeetQuiz Logo
Privacy Policy•contact@leetquiz.com
© 2025 LeetQuiz All rights reserved.
Google Professional Cloud DevOps Engineer

Google Professional Cloud DevOps Engineer

Get started today

Ultimate access to all questions.


Your application is hosted on Google Kubernetes Engine (GKE), and you aim to utilize Spinnaker with the Kubernetes Provider V2 for blue/green deployments to manage traffic between different versions of your application. What is the recommended approach?

Real Exam



Explanation:

For blue/green deployments in Kubernetes with Spinnaker, the best practice is to use Kubernetes Deployments. They offer declarative updates for Pods and ReplicaSets, support rolling updates, and align well with Spinnaker’s deployment strategies. Spinnaker’s Kubernetes V2 provider can manage multiple deployment objects for different app versions, facilitating traffic routing between them for blue/green deployments. Direct management of ReplicaSets is not recommended as they are typically controlled by Deployments. Creating new deployment objects for each version (Option D) is the correct strategy for blue/green deployments, whereas updating the existing deployment (Option A) is more akin to a rolling update. Options involving ReplicaSets (B and C) are not advised for deployment workflows.

Powered ByGPT-5