Topic 5 Question 3
Mountkirk Games wants to set up a continuous delivery pipeline. Their architecture includes many small services that they want to be able to update and roll back quickly. Mountkirk Games has the following requirements: ✑ Services are deployed redundantly across multiple regions in the US and Europe ✑ Only frontend services are exposed on the public internet ✑ They can provide a single frontend IP for their fleet of services ✑ Deployment artifacts are immutable Which set of products should they use?
Google Cloud Storage, Google Cloud Dataflow, Google Compute Engine
Google Cloud Storage, Google App Engine, Google Network Load Balancer
Google Kubernetes Registry, Google Container Engine, Google HTTP(S) Load Balancer
Google Cloud Functions, Google Cloud Pub/Sub, Google Cloud Deployment Manager
ユーザの投票
コメント(17)
Correct answer is C.
👍 45KouShikyou2019/10/13If the Question is erroneously formulated, and they mean Google Container Registry and Google Kubernetes Engine, then C is the right answer
👍 28kolcsarzs2019/12/05A is not correct because Mountkirk Games wants to set up a continuous delivery pipeline, not a data processing pipeline. Cloud Dataflow is a fully managed service for creating data processing pipelines.
B is not correct because a Cloud Load Balancer distributes traffic to Compute Engine instances. App Engine and Cloud Load Balancer are parts of different solutions.
C is correct because: -Google Kubernetes Engine is ideal for deploying small services that can be updated and rolled back quickly. It is a best practice to manage services using immutable containers. -Cloud Load Balancing supports globally distributed services across multiple regions. It provides a single global IP address that can be used in DNS records. Using URL Maps, the requests can be routed to only the services that Mountkirk wants to expose. -Container Registry is a single place for a team to manage Docker images for the services.
D is not correct because you cannot reserve a single frontend IP for cloud functions. When deployed, an HTTP-triggered cloud function creates an endpoint with an automatically assigned IP.
👍 11erika_vazquez2021/12/21
シャッフルモード