From 3fc4a3e8b73ba2ecbca5840d4d3a20df22e0a392 Mon Sep 17 00:00:00 2001 From: Karen Bradshaw Date: Tue, 29 Sep 2020 20:37:02 -0400 Subject: [PATCH] fix eviction policy content type --- .../concepts/scheduling-eviction/eviction-policy.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/content/en/docs/concepts/scheduling-eviction/eviction-policy.md b/content/en/docs/concepts/scheduling-eviction/eviction-policy.md index 32a7fb14b3..b63c729696 100644 --- a/content/en/docs/concepts/scheduling-eviction/eviction-policy.md +++ b/content/en/docs/concepts/scheduling-eviction/eviction-policy.md @@ -1,6 +1,6 @@ --- title: Eviction Policy -content_template: templates/concept +content_type: concept weight: 60 --- @@ -12,12 +12,13 @@ This page is an overview of Kubernetes' policy for eviction. ## Eviction Policy -The {{< glossary_tooltip text="Kubelet" term_id="kubelet" >}} can proactively monitor for and prevent total starvation of a -compute resource. In those cases, the `kubelet` can reclaim the starved -resource by proactively failing one or more Pods. When the `kubelet` fails +The {{< glossary_tooltip text="kubelet" term_id="kubelet" >}} proactively monitors for +and prevents total starvation of a compute resource. In those cases, the `kubelet` can reclaim +the starved resource by failing one or more Pods. When the `kubelet` fails a Pod, it terminates all of its containers and transitions its `PodPhase` to `Failed`. -If the evicted Pod is managed by a Deployment, the Deployment will create another Pod +If the evicted Pod is managed by a Deployment, the Deployment creates another Pod to be scheduled by Kubernetes. ## {{% heading "whatsnext" %}} -- Read [Configure out of resource handling](/docs/tasks/administer-cluster/out-of-resource/) to learn more about eviction signals, thresholds, and handling. \ No newline at end of file + +- Learn how to [configure out of resource handling](/docs/tasks/administer-cluster/out-of-resource/) with eviction signals and thresholds.