|
54 | 54 | required:
|
55 | 55 | - integrations
|
56 | 56 | properties:
|
57 |
| - fairSharing: |
58 |
| - description: fairSharing TODO not done yet |
59 |
| - type: object |
60 |
| - properties: |
61 |
| - preemptionStrategies: |
62 |
| - description: |- |
63 |
| - preemptionStrategies indicates which constraints should a preemption satisfy. |
64 |
| - The preemption algorithm will only use the next strategy in the list if the |
65 |
| - incoming workload (preemptor) doesn't fit after using the previous strategies. |
66 |
| - Possible values are: |
67 |
| - - LessThanOrEqualToFinalShare: Only preempt a workload if the share of the preemptor CQ |
68 |
| - with the preemptor workload is less than or equal to the share of the preemptee CQ |
69 |
| - without the workload to be preempted. |
70 |
| - This strategy might favor preemption of smaller workloads in the preemptee CQ, |
71 |
| - regardless of priority or start time, in an effort to keep the share of the CQ |
72 |
| - as high as possible. |
73 |
| - - LessThanInitialShare: Only preempt a workload if the share of the preemptor CQ |
74 |
| - with the incoming workload is strictly less than the share of the preemptee CQ. |
75 |
| - This strategy doesn't depend on the share usage of the workload being preempted. |
76 |
| - As a result, the strategy chooses to preempt workloads with the lowest priority and |
77 |
| - newest start time first. |
78 |
| - The default strategy is ["LessThanOrEqualToFinalShare", "LessThanInitialShare"]. |
79 |
| - type: array |
80 |
| - maxItems: 2 |
81 |
| - items: |
82 |
| - type: string |
83 |
| - enum: |
84 |
| - - LessThanOrEqualToFinalShare |
85 |
| - - LessThanInitialShare |
86 | 57 | integrations:
|
87 | 58 | description: |-
|
88 | 59 | integrations is a required field that configures the Kueue's workload integrations.
|
@@ -206,35 +177,76 @@ spec:
|
206 | 177 | x-kubernetes-list-type: atomic
|
207 | 178 | kueueGangSchedulingPolicy:
|
208 | 179 | description: |-
|
209 |
| - kueueGangSchedulingPolicy controls how Kueue admits workloads |
210 |
| - Kueue provides the ability to admit workloads all in one (gang admission) |
211 |
| - and evicts workloads if they are not ready within a specific time. |
212 |
| - This is an optional field. |
213 |
| - The allowed values are BlockAdmission, EvictNotReadyWorkloads, and Disabled. |
214 |
| - The default value will be Disabled. |
215 |
| - BlockAdmission serializes the admission process for Kueue |
216 |
| - Workloads will be admitted one at a time and will wait |
217 |
| - for the workloads to be ready before going on to the next one in the list. |
218 |
| - EvictNotReadyWorkloads will not block admission but will evict Workloads that are not ready |
219 |
| - within a defaulted timelimit. |
220 |
| - type: string |
221 |
| - enum: |
222 |
| - - EvictNotReadyWorkloads |
223 |
| - - Disabled |
| 180 | + kueueGangSchedulingPolicy controls how Kueue admits workloads. |
| 181 | + Gang Scheduling is the act of all or nothing scheduling. |
| 182 | + Kueue provides this ability. |
| 183 | + This field is optional. |
| 184 | + type: object |
| 185 | + properties: |
| 186 | + byWorkload: |
| 187 | + description: |- |
| 188 | + byWorkload controls how admission is done. |
| 189 | + When admission is set to Sequential, only pods from the currently processing workload will be admitted. |
| 190 | + Once all pods from the current workload are admitted, and ready, Kueue will process the next workload. |
| 191 | + Sequential processing may slow down admission when the cluster has sufficient capacity for multiple workloads, |
| 192 | + but provides a higher guarantee of workloads scheduling all pods together successfully. |
| 193 | + When set to Parallel, pods from any workload will be admitted at any time. |
| 194 | + This may lead to a deadlock where workloads are in contention for cluster capacity and |
| 195 | + pods from another workload having successfully scheduled prevent pods from the current workload scheduling. |
| 196 | + type: string |
| 197 | + enum: |
| 198 | + - Parallel |
| 199 | + - Sequential |
| 200 | + x-kubernetes-validations: |
| 201 | + - rule: self.policy==ByWorkload |
| 202 | + message: byWorkload is only valid if policy equals ByWorkload |
| 203 | + policy: |
| 204 | + description: |- |
| 205 | + policy allows for changing the kinds of gang scheduling Kueue does. |
| 206 | + This is an optional field. |
| 207 | + The allowed values are ByWorkload and Disabled. |
| 208 | + The default value will be Disabled. |
| 209 | + ByWorkload allows for configuration how admission is performed |
| 210 | + for Kueue. |
| 211 | + type: string |
| 212 | + enum: |
| 213 | + - ByWorkload |
| 214 | + - Disabled |
| 215 | + preemption: |
| 216 | + description: |- |
| 217 | + preemption is the process of evicting one or more admitted Workloads to accommodate another Workload. |
| 218 | + Kueue has classical preemption and preemption via fair sharing. |
| 219 | + type: object |
| 220 | + properties: |
| 221 | + preemptionStrategy: |
| 222 | + description: |- |
| 223 | + preemptionStrategy are the types of preemption kueue allows. |
| 224 | + Kueue has two types of preemption: classical and fair sharing. |
| 225 | + type: string |
| 226 | + enum: |
| 227 | + - Classical |
| 228 | + - FairSharing |
224 | 229 | queueLabelPolicy:
|
225 | 230 | description: |-
|
226 |
| - queueLabelPolicy controls whether or not Kueue reconciles |
227 |
| - jobs that don't set the label kueue.x-k8s.io/queue-name. |
228 |
| - The allowed values are QueueNameRequired and QueueNameOptional. |
229 |
| - If set to QueueNameRequired, then those jobs will be suspended and never started unless |
230 |
| - they are assigned a queue and eventually admitted. This also applies to |
231 |
| - jobs created before starting the kueue controller. |
232 |
| - Defaults to QueueNameOptional; therefore, those jobs are not managed and if they are created |
233 |
| - unsuspended, they will start immediately. |
234 |
| - type: string |
235 |
| - enum: |
236 |
| - - QueueNameRequired |
237 |
| - - QueueNameOptional |
| 231 | + queueLabelPolicy controls how kueue manages workloads |
| 232 | + The default behavior of Kueue will manage workloads that have a queue-name label. |
| 233 | + This field is optional. |
| 234 | + type: object |
| 235 | + properties: |
| 236 | + queueLabelPolicy: |
| 237 | + description: |- |
| 238 | + queueLabelPolicy controls whether or not Kueue reconciles |
| 239 | + jobs that don't set the label kueue.x-k8s.io/queue-name. |
| 240 | + The allowed values are QueueNameRequired and QueueNameOptional. |
| 241 | + If set to QueueNameRequired, then those jobs will be suspended and never started unless |
| 242 | + they are assigned a queue and eventually admitted. This also applies to |
| 243 | + jobs created before starting the kueue controller. |
| 244 | + Defaults to QueueNameRequired; therefore, those jobs are not managed and if they are created |
| 245 | + unsuspended, they will start immediately. |
| 246 | + type: string |
| 247 | + enum: |
| 248 | + - QueueNameRequired |
| 249 | + - QueueNameOptional |
238 | 250 | logLevel:
|
239 | 251 | description: |-
|
240 | 252 | logLevel is an intent based logging for an overall component. It does not give fine grained control, but it is a
|
|
0 commit comments