Last updated
Was this helpful?
Last updated
Was this helpful?
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 .
Enable Kubernetes Health by adding a .
Support for Kubernetes Probes