
Ultimate access to all questions.
You are managing an e-commerce platform hosted in your on-premises data center. This platform is built using multiple Python-based microservices, each running in its own Docker container, and utilizes environment variables for configuration management. What is the most efficient way to deploy this application on a serverless solution in Google Cloud with minimal code changes?
A
Utilize your existing CI/CD pipeline to deploy the Docker images to Cloud Run, adjusting configurations and access points as necessary.
B
Deploy the Docker images to Cloud Functions using your current CI/CD process, ensuring the configuration matches the on-premises setup.
C
Directly deploy each microservice as a separate Cloud Function from your current codebase, modifying configurations and interfaces where needed.
D
Deploy each microservice individually on Cloud Run from your existing codebase, keeping the on-premises configurations unchanged.