Probes and Health Check
Support for Kubernetes Probes
Liveness, Readiness, and Startup Probes
Liveness, Readiness, and Startup probes are well-known methods to detect Pod health in Kubernetes. They are used in regular uptime monitoring and enable initial startup health that allows rolling deploys of new service updates.
The example below will define Liveness, Readiness, and Startup probes to one service deployment.
While creating a deployment, provide the below configuration to set up probes for your service.
In addition to the httpGet
example, TCP Probes can be configured from the Other Container Config field:
Complete details of this feature are available in the Kubernetes documentation here.
Health Check
Enable Kubernetes Health by adding a Load Balancer Listener with Health Check enabled.
Last updated