diff --git a/content/en/docs/concepts/scheduling-eviction/assign-pod-node.md b/content/en/docs/concepts/scheduling-eviction/assign-pod-node.md index 9cd70f9e976a4..c88274eb0b5af 100644 --- a/content/en/docs/concepts/scheduling-eviction/assign-pod-node.md +++ b/content/en/docs/concepts/scheduling-eviction/assign-pod-node.md @@ -2,7 +2,7 @@ reviewers: - davidopp - kevin-wangzefeng -- bsalamat +- alculquicondor title: Assigning Pods to Nodes content_type: concept weight: 20 @@ -144,13 +144,13 @@ to repel Pods from specific nodes. If you specify both `nodeSelector` and `nodeAffinity`, *both* must be satisfied for the Pod to be scheduled onto a node. -If you specify multiple `nodeSelectorTerms` associated with `nodeAffinity` -types, then the Pod can be scheduled onto a node if one of the specified `nodeSelectorTerms` can be -satisfied. +If you specify multiple terms in `nodeSelectorTerms` associated with `nodeAffinity` +types, then the Pod can be scheduled onto a node if one of the specified terms +can be satisfied (terms are ORed). -If you specify multiple `matchExpressions` associated with a single `nodeSelectorTerms`, -then the Pod can be scheduled onto a node only if all the `matchExpressions` are -satisfied. +If you specify multiple expressions in a single `matchExpressions` field associated with a +term in `nodeSelectorTerms`, then the Pod can be scheduled onto a node only +if all the expressions are satisfied (expressions are ANDed). {{}} See [Assign Pods to Nodes using Node Affinity](/docs/tasks/configure-pod-container/assign-pods-nodes-using-node-affinity/)