Readiness Probe:?
- Indicates whether the service is ready to handle traffic. If the probe fails,
Kubernetes will stop sending traffic to the service.
- Example: A HTTP endpoint (e.g., /health/ready) can be used to check if
the service has completed its initialization.
Example: In Kubernetes, configure a livenessProbe and readinessProbe for a User
Service that checks the database connection and ensures the service is ready before
accepting traffic.