Category: Kubernetes
-
[Kubernetes] Probes
Probes There are three kinds of probes in Kubernetes(k8s): startup, liveness, and readiness. If the startup probe succeeds, the liveness and readiness probes get started. Containers that takes some time to get started can benefit from startup probe. As long as startup probe is not finished, K8s will never restart the pod. Therefore, the startup…