summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Oppenheimer <davidopp@gmail.com>2015-10-03 12:45:35 -0700
committerDavid Oppenheimer <davidopp@gmail.com>2015-10-03 12:45:35 -0700
commit7ddf87cdfd9ccac0fa25c8f515d4ebf8c14f848c (patch)
treef3ba5990c2230fe4bfed5006a00a10970e6452cf
parentd3d7bf18668c2ea71583ca8a86a2470a5aa46b8f (diff)
parentd29c41354ec8aec136df95d3a9a03b6807b7bcd6 (diff)
Merge pull request #14724 from HaiyangDING/PodFitsHostPorts
Replace PodFitsPorts with PodFitsHostPorts
-rwxr-xr-xscheduler_algorithm.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/scheduler_algorithm.md b/scheduler_algorithm.md
index 7964ab33..d6a8b6c5 100755
--- a/scheduler_algorithm.md
+++ b/scheduler_algorithm.md
@@ -41,7 +41,7 @@ The purpose of filtering the nodes is to filter out the nodes that do not meet c
- `NoDiskConflict`: Evaluate if a pod can fit due to the volumes it requests, and those that are already mounted.
- `PodFitsResources`: Check if the free resource (CPU and Memory) meets the requirement of the Pod. The free resource is measured by the capacity minus the sum of requests of all Pods on the node. To learn more about the resource QoS in Kubernetes, please check [QoS proposal](../proposals/resource-qos.md).
-- `PodFitsPorts`: Check if any HostPort required by the Pod is already occupied on the node.
+- `PodFitsHostPorts`: Check if any HostPort required by the Pod is already occupied on the node.
- `PodFitsHost`: Filter out all nodes except the one specified in the PodSpec's NodeName field.
- `PodSelectorMatches`: Check if the labels of the node match the labels specified in the Pod's `nodeSelector` field ([Here](../user-guide/node-selection/) is an example of how to use `nodeSelector` field).
- `CheckNodeLabelPresence`: Check if all the specified labels exist on a node or not, regardless of the value.