
Answer-first summary for fast verification
Answer: Configure Health Checks to continuously verify if the instance is available.
Option A is incorrect because Uptime Checks are used to verify if an application responds or is reachable, not specifically for load balancing purposes. Option B is correct as Health Checks are utilized by the load balancer to determine if the backend is reachable and responsive to traffic. Option C is incorrect since Readiness Probes are used by Kubernetes to check if pods are ready to receive traffic, not for load balancer health checks. Option D is incorrect because Liveness Probes are used by Kubernetes to check if a pod is in the running state and to restart it if it's not, which is unrelated to load balancer health checks. References: [Google Cloud Uptime Checks](https://cloud.google.com/monitoring/uptime-checks), [Google Cloud Health Check Concepts](https://cloud.google.com/load-balancing/docs/health-check-concepts).
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
Your team has deployed a Python application to a Managed Instance Group, which is placed behind a load balancer. Your task is to ensure the load balancer only sends requests to instances that are functioning correctly. Which of the following options will help you achieve this?
A
Configure Uptime Checks to continuously verify if the instance is available.
B
Configure Health Checks to continuously verify if the instance is available.
C
Configure the Readiness Probe to continuously check if the instance is ready to receive traffic.
D
Configure the Liveness Probe to continuously check if the instance is running and restart it if not.
No comments yet.