From 97295ed88fb5bd15e6220444505b17b41e2616b6 Mon Sep 17 00:00:00 2001 From: 196Ikuchil <22634362+196Ikuchil@users.noreply.github.com> Date: Sat, 16 Apr 2022 20:33:10 +0900 Subject: [PATCH] Improvement for en/docs/reference/glossary/api-eviction.md (#32959) * fix:add description of PodDisruptionBudgets and hyperlink * Update api-eviction.md --- content/en/docs/reference/glossary/api-eviction.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/en/docs/reference/glossary/api-eviction.md b/content/en/docs/reference/glossary/api-eviction.md index 69fc9d9b0c..d450f90743 100644 --- a/content/en/docs/reference/glossary/api-eviction.md +++ b/content/en/docs/reference/glossary/api-eviction.md @@ -19,4 +19,9 @@ You can request eviction either by directly calling the Eviction API using a client of the kube-apiserver, like the `kubectl drain` command. When an `Eviction` object is created, the API server terminates the Pod. +API-initiated evictions respect your configured [`PodDisruptionBudgets`](/docs/tasks/run-application/configure-pdb/) +and [`terminationGracePeriodSeconds`](/docs/concepts/workloads/pods/pod-lifecycle#pod-termination). + API-initiated eviction is not the same as [node-pressure eviction](/docs/concepts/scheduling-eviction/eviction/#kubelet-eviction). + +* See [API-initiated eviction](/docs/concepts/scheduling-eviction/api-eviction/) for more information.