Health Check EndpointsEvery microservice must implement health endpoints:# Liveness: Is service alive?GET /healthz → 200 OK if process running# Readiness: Ready to handle traffic?GET /ready → 200 if database connected, caches warm, dependencies available → 503 if not ready yet# Startup: Has service completed initialization?GET /startup → 200 once initialization completeConfigure probes:
1 Matching Annotations
- Last 7 days
-
-