From 1c90c995c3676a2365933e9e45284ab048a1e782 Mon Sep 17 00:00:00 2001 From: Brian Nutt Date: Sun, 27 Sep 2020 13:28:52 -0700 Subject: [PATCH] Fix typo in en/docs/concepts/scheduling-eviction/scheduling-framework.md Fixes description for Postfilter plugin. The plugin is called when no feasible nodes were found for the pod being scheduled. --- .../docs/concepts/scheduling-eviction/scheduling-framework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/scheduling-eviction/scheduling-framework.md b/content/en/docs/concepts/scheduling-eviction/scheduling-framework.md index 20ecb6cf6b..5274c2ba24 100644 --- a/content/en/docs/concepts/scheduling-eviction/scheduling-framework.md +++ b/content/en/docs/concepts/scheduling-eviction/scheduling-framework.md @@ -78,7 +78,7 @@ called for that node. Nodes may be evaluated concurrently. ### PostFilter {#post-filter} These plugins are called after Filter phase, but only when no feasible nodes -were found for the node. Plugins are called in their configured order. If +were found for the pod. Plugins are called in their configured order. If any postFilter plugin marks the node as `Schedulable`, the remaining plugins will not be called. A typical PostFilter implementation is preemption, which tries to make the pod schedulable by preempting other Pods.