May 2, 2020
Understanding Kubernetes' pod lifecycle: the readiness probe
Introduction Understanding Kubernetes' concepts is key to running highly available applications.
This article will take you through the scenario of deploying a new version of a pod, and show how understanding the pod lifecycle and implementing a readiness probe will help you deploying new releases without downtime.
Without a readiness probe Kubernetes will try to guess when your pod is ready, and then schedule traffic to it. If the pod has latency between the point-in-time when the container is running and when it can handle traffic, this will cause transactions to be dropped, a.
Read more