Topic 1 Question 84
Your organization has a containerized web application that runs on-premises. As part of the migration plan to Google Cloud, you need to select a deployment strategy and platform that meets the following acceptance criteria:
- The platform must be able to direct traffic from Android devices to an Android-specific microservice.
- The platform must allow for arbitrary percentage-based traffic splitting
- The deployment strategy must allow for continuous testing of multiple versions of any microservice.
What should you do?
Deploy the canary release of the application to Cloud Run. Use traffic splitting to direct 10% of user traffic to the canary release based on the revision tag.
Deploy the canary release of the application to App Engine. Use traffic splitting to direct a subset of user traffic to the new version based on the IP address.
Deploy the canary release of the application to Compute Engine. Use Anthos Service Mesh with Compute Engine to direct 10% of user traffic to the canary release by configuring the virtual service.
Deploy the canary release to Google Kubernetes Engine with Anthos Service Mesh. Use traffic splitting to direct 10% of user traffic to the new version based on the user-agent header configured in the virtual service.
ユーザの投票
コメント(4)
Option D allows for continuous testing of multiple versions of microservices, meets the traffic splitting requirements, and provides the necessary flexibility for controlling traffic based on user-agent headers, making it the most suitable choice based on the specified acceptance criteria.
👍 7ManishKS2023/09/30- 正解だと思う選択肢: D
D is correct
👍 2emauart2023/11/06 - 正解だと思う選択肢: D
Anthos Service Mesh allows for traffic routing based on HTTP headers such as the user-agent, which can be used to direct traffic from Android devices to an Android-specific microservice. Anthos Service Mesh supports arbitrary percentage-based traffic splitting. Google Kubernetes Engine with Anthos Service Mesh allows for continuous testing of multiple versions of any microservice. You can deploy different versions of your microservices as separate Kubernetes deployments and use Anthos Service Mesh to control the traffic between them.
👍 1Andrei_Z2023/11/14
シャッフルモード