summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby (Babak) Salamat <bsalamat@google.com>2018-01-11 11:02:31 -0800
committerBobby (Babak) Salamat <bsalamat@google.com>2018-01-17 00:04:41 -0800
commita57cd1042f92ee48beb39b6443bfa72e7e09c300 (patch)
tree960bd4efdcf43efcc2c13974cbd39ee23da73a50
parente2cd157d3112b0cf2a37baaaa2b492017ae6b000 (diff)
minor fix to reflect the new name of NominatedNodeName annotation
-rw-r--r--contributors/design-proposals/scheduling/pod-preemption.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/contributors/design-proposals/scheduling/pod-preemption.md b/contributors/design-proposals/scheduling/pod-preemption.md
index 707708eb..106b1f9b 100644
--- a/contributors/design-proposals/scheduling/pod-preemption.md
+++ b/contributors/design-proposals/scheduling/pod-preemption.md
@@ -149,7 +149,8 @@ The head of the queue will always be the highest priority pending pod.
1. If the pod is not schedulable, run preemption for the pod.
1. Move the pod to the list of unschedulable pods.
1. If a node was chosen to preempt pods, set the node name as an annotation with
- the "NomindatedNodeName" key to the pod.
+ the "scheduler.kubernetes.io/nominated-node-name" key to the pod. This key is referred to as
+ "NominatedNodeName" in this doc for brevity.
1. When any pod is terminated, a node is added/removed, or when
pods or nodes updated, remove all the pods from the unschedulable pods
list and add them to the scheduling queue. (Scheduler should keep its existing rate
@@ -396,7 +397,7 @@ money by not scaling up the cluster for such a pod.
In order to address these cases:
1. Cluster Autoscaler will not scale up the cluster for pods with
-`NominatedNodeName` annotation.
+`scheduler.kubernetes.io/nominated-node-name` annotation.
1. Cluster Autoscaler ignores all the pods whose priority is below a certain value.
This value may be configured by a command line flag and will be zero by default.