From 33dcba8aa6dd983be15816ba1ac41862e4780f69 Mon Sep 17 00:00:00 2001 From: Alexis Boissiere Date: Fri, 16 Feb 2024 17:27:27 +0100 Subject: [PATCH] Fix spelling mistake in kube scheduler --- content/en/docs/concepts/scheduling-eviction/kube-scheduler.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/scheduling-eviction/kube-scheduler.md b/content/en/docs/concepts/scheduling-eviction/kube-scheduler.md index 4dc27d80b8f42..313d56fe34da7 100644 --- a/content/en/docs/concepts/scheduling-eviction/kube-scheduler.md +++ b/content/en/docs/concepts/scheduling-eviction/kube-scheduler.md @@ -62,7 +62,7 @@ kube-scheduler selects a node for the pod in a 2-step operation: The _filtering_ step finds the set of Nodes where it's feasible to schedule the Pod. For example, the PodFitsResources filter checks whether a -candidate Node has enough available resource to meet a Pod's specific +candidate Node has enough available resources to meet a Pod's specific resource requests. After this step, the node list contains any suitable Nodes; often, there will be more than one. If the list is empty, that Pod isn't (yet) schedulable.