From 41b62a9305effb91911da4b231497d68ec6dbc55 Mon Sep 17 00:00:00 2001 From: Draven Date: Fri, 7 May 2021 18:33:27 +0800 Subject: [PATCH] doc: remove deprecated predicates in scheduler --- content/en/docs/reference/scheduling/policies.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/content/en/docs/reference/scheduling/policies.md b/content/en/docs/reference/scheduling/policies.md index fc9a740266..1cd80273d9 100644 --- a/content/en/docs/reference/scheduling/policies.md +++ b/content/en/docs/reference/scheduling/policies.md @@ -43,21 +43,6 @@ The following *predicates* implement filtering: - `MaxCSIVolumeCount`: Decides how many {{< glossary_tooltip text="CSI" term_id="csi" >}} volumes should be attached, and whether that's over a configured limit. -- `CheckNodeMemoryPressure`: If a Node is reporting memory pressure, and there's no - configured exception, the Pod won't be scheduled there. - -- `CheckNodePIDPressure`: If a Node is reporting that process IDs are scarce, and - there's no configured exception, the Pod won't be scheduled there. - -- `CheckNodeDiskPressure`: If a Node is reporting storage pressure (a filesystem that - is full or nearly full), and there's no configured exception, the Pod won't be - scheduled there. - -- `CheckNodeCondition`: Nodes can report that they have a completely full filesystem, - that networking isn't available or that kubelet is otherwise not ready to run Pods. - If such a condition is set for a Node, and there's no configured exception, the Pod - won't be scheduled there. - - `PodToleratesNodeTaints`: checks if a Pod's {{< glossary_tooltip text="tolerations" term_id="toleration" >}} can tolerate the Node's {{< glossary_tooltip text="taints" term_id="taint" >}}.