https://in.linkedin.com/in/roshan-shetty-7905a746 Kubernetes is an open source container orchestration platform that significantly simplifies an application’s creation and management. Distributed systems like Kubernetes can be hard to manage, as they involve many moving parts and all of them must work for the system to function.

Liveness probes: Liveness probes will let Kubernetes know whether your app is healthy.

Using the liveness probes, Kubernetes will detect the app is no longer serving requests and restart the malfunctioning pod by default.

Command probes (exec command): In the case of commandprobes, Kubernetes will run a command inside your container.

Related Articles