From 618fe4e959f004f3d4330d5ae433c53c751079e2 Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Tue, 17 Apr 2018 02:24:07 -0500 Subject: [PATCH] Clarify the grace period when shutting down pods --- slides/kube/rollout.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/slides/kube/rollout.md b/slides/kube/rollout.md index 1b479415..aa8eb0f9 100644 --- a/slides/kube/rollout.md +++ b/slides/kube/rollout.md @@ -110,7 +110,9 @@ That rollout should be pretty quick. What shows in the web UI? - Kubernetes sends a "polite" shutdown request to the worker, which ignores it -- Eventually, Kubernetes gets impatient and kills the container +- After a grace period, Kubernetes gets impatient and kills the container + + (The grace period is 30 seconds, but [can be changed](https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods) if needed) ---