
Explanation:
The question requires deploying a C++ microservice with custom libraries without managing infrastructure. Cloud Functions (A) is unsuitable as it doesn't support C++. Compute Engine (C) and standard GKE (D) require infrastructure management. Cloud Build (B) containerizes the code, and Cloud Run handles serverless deployment, meeting all requirements.
Ultimate access to all questions.
How can you deploy a containerized C++ microservice on Google Cloud that uses custom-built libraries, without managing the underlying infrastructure?
A
Use Cloud Functions to deploy the microservice.
B
Use Cloud Build to create the container, and deploy it on Cloud Run.
C
Use Cloud Shell to containerize your microservice, and deploy it on a Container-Optimized OS Compute Engine instance.
D
Use Cloud Shell to containerize your microservice, and deploy it on standard Google Kubernetes Engine.
No comments yet.