Readiness and Liveness probe # The readiness probe checks if the service in pod can accept traffic. Kubernetes will remove the pod if the readiness probe fails. The liveness probe is used to check whether the pod is still alive and functioning. If the liveness check fails, the pod will be restarted by Kubernetes. Types of readiness and liveness probe # We can use HTTP, command or TCP probe. Get configuration for liveness and readiness # We can run the following command to get the pod configur...