
Answer-first summary for fast verification
Answer: Implement Health Checks to continuously verify the instance's availability.
The correct answer is **Health Checks**, as they are utilized by the load balancer to assess whether the backend is accessible and can handle traffic. **Why Other Options are Incorrect:** - **Readiness Probe**: Used by Kubernetes to determine if pods are prepared to accept traffic. - **Liveness Probe**: Employed by Kubernetes to check if a pod is operational; if not, it restarts the pod. - **Uptime Check**: Designed to verify if an application is responsive or reachable. For further reference, consult the documentation on [Create public uptime checks](https://cloud.google.com/monitoring/uptime-checks) and [Health checks](https://cloud.google.com/load-balancing/docs/health-checks).
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
Your team has deployed a Python application to a Managed Instance Group, which is behind a load balancer. Your task is to ensure the load balancer directs requests only to healthy instances. Which of the following options will help you achieve this?
A
Configure Uptime Checks to continuously verify the instance's availability.
B
Implement Health Checks to continuously verify the instance's availability.
C
Set up the Readiness Probe to continuously verify the instance's availability.
D
Set up the Liveness Probe to continuously verify the instance's availability.
No comments yet.