@@ -106,7 +106,7 @@ description: "This priority class should be used for XYZ service pods only."
106
106
107
107
{{< feature-state for_k8s_version="v1.19" state="beta" >}}
108
108
109
- Pods with ` PreemptionPolicy : Never` will be placed in the scheduling queue
109
+ Pods with ` preemptionPolicy : Never` will be placed in the scheduling queue
110
110
ahead of lower-priority pods,
111
111
but they cannot preempt other pods.
112
112
A non-preempting pod waiting to be scheduled will stay in the scheduling queue,
@@ -122,16 +122,16 @@ allowing other pods with lower priority to be scheduled before them.
122
122
Non-preempting pods may still be preempted by other,
123
123
high-priority pods.
124
124
125
- ` PreemptionPolicy ` defaults to `PreemptLowerPriority`,
125
+ ` preemptionPolicy ` defaults to `PreemptLowerPriority`,
126
126
which will allow pods of that PriorityClass to preempt lower-priority pods
127
127
(as is existing default behavior).
128
- If `PreemptionPolicy ` is set to `Never`,
128
+ If `preemptionPolicy ` is set to `Never`,
129
129
pods in that PriorityClass will be non-preempting.
130
130
131
131
An example use case is for data science workloads.
132
132
A user may submit a job that they want to be prioritized above other workloads,
133
133
but do not wish to discard existing work by preempting running pods.
134
- The high priority job with `PreemptionPolicy : Never` will be scheduled
134
+ The high priority job with `preemptionPolicy : Never` will be scheduled
135
135
ahead of other queued pods,
136
136
as soon as sufficient cluster resources "naturally" become free.
137
137
0 commit comments