Google Professional Cloud Developer

Google Professional Cloud Developer

Get started today

Ultimate access to all questions.


How can you implement a solution on Google Kubernetes Engine where internal microservices can be configured with specific replica counts while maintaining uniform addressing between services, regardless of scaling?




Explanation:

To meet the requirements, each microservice should be deployed as a Deployment to manage replicas. Exposing the Deployment via a Service provides a stable DNS name for internal communication. Services handle load balancing across replicas, ensuring uniform addressing. Ingress (options B/D) is for external access, which isn't needed here. Deploying as Pods (C/D) lacks scalability. Thus, option A is correct.