Configuring cloud-native applications for deployment1 / 5
You are deploying containers to GKE and want to ensure high availability of your application. You need to implement health checks that prevent traffic from being sent to pods that are not ready to serve requests. Which Kubernetes probe should you configure?
CorrectIncorrect
Alex
In Kubernetes, readiness probes determine whether a pod is ready to receive traffic. When a readiness probe fails, the pod is removed from Service endpoints, preventing requests from reaching it. This differs from liveness probes, which restart containers that are stuck, and startup probes, which gate the initial startup period. 'Container probe' is not a valid Kubernetes probe type. For GKE deployments, readiness probes integrate with load balancer health checks—GKE can infer health check parameters from readiness probe definitions. Ref: docs.cloud.google.com/kubernetes-engine/docs/troubleshooting/ingress-health-checks
Sourcecloud.google.com
Follow-up answers are available in the app. Create a free account — no credit card required.
Question 1 of 5
Create a free account