@@ -171,6 +171,78 @@ spec:
171
171
required :
172
172
- frameworks
173
173
type : object
174
+ kueueGangSchedulingPolicy :
175
+ description : |-
176
+ kueueGangSchedulingPolicy controls how Kueue admits workloads.
177
+ Gang Scheduling is the act of all or nothing scheduling.
178
+ Kueue provides this ability.
179
+ This field is optional.
180
+ properties :
181
+ byWorkload :
182
+ description : |-
183
+ byWorkload controls how admission is done.
184
+ When admission is set to Sequential, only pods from the currently processing workload will be admitted.
185
+ Once all pods from the current workload are admitted, and ready, Kueue will process the next workload.
186
+ Sequential processing may slow down admission when the cluster has sufficient capacity for multiple workloads,
187
+ but provides a higher guarantee of workloads scheduling all pods together successfully.
188
+ When set to Parallel, pods from any workload will be admitted at any time.
189
+ This may lead to a deadlock where workloads are in contention for cluster capacity and
190
+ pods from another workload having successfully scheduled prevent pods from the current workload scheduling.
191
+ enum :
192
+ - Parallel
193
+ - Sequential
194
+ type : string
195
+ x-kubernetes-validations :
196
+ - message : byWorkload is only valid if policy equals ByWorkload
197
+ rule : self.policy=='ByWorkload'
198
+ policy :
199
+ description : |-
200
+ policy allows for changing the kinds of gang scheduling Kueue does.
201
+ This is an optional field.
202
+ The allowed values are ByWorkload and Disabled.
203
+ The default value will be Disabled.
204
+ ByWorkload allows for configuration how admission is performed
205
+ for Kueue.
206
+ enum :
207
+ - ByWorkload
208
+ - Disabled
209
+ type : string
210
+ type : object
211
+ preemption :
212
+ description : |-
213
+ preemption is the process of evicting one or more admitted Workloads to accommodate another Workload.
214
+ Kueue has classical preemption and preemption via fair sharing.
215
+ properties :
216
+ preemptionStrategy :
217
+ description : |-
218
+ preemptionStrategy are the types of preemption kueue allows.
219
+ Kueue has two types of preemption: classical and fair sharing.
220
+ enum :
221
+ - Classical
222
+ - FairSharing
223
+ type : string
224
+ type : object
225
+ queueLabelPolicy :
226
+ description : |-
227
+ queueLabelPolicy controls how kueue manages workloads
228
+ The default behavior of Kueue will manage workloads that have a queue-name label.
229
+ This field is optional.
230
+ properties :
231
+ queueLabelPolicy :
232
+ description : |-
233
+ queueLabelPolicy controls whether or not Kueue reconciles
234
+ jobs that don't set the label kueue.x-k8s.io/queue-name.
235
+ The allowed values are QueueNameRequired and QueueNameOptional.
236
+ If set to QueueNameRequired, then those jobs will be suspended and never started unless
237
+ they are assigned a queue and eventually admitted. This also applies to
238
+ jobs created before starting the kueue controller.
239
+ Defaults to QueueNameRequired; therefore, those jobs are not managed and if they are created
240
+ unsuspended, they will start immediately.
241
+ enum :
242
+ - QueueNameRequired
243
+ - QueueNameOptional
244
+ type : string
245
+ type : object
174
246
required :
175
247
- integrations
176
248
type : object
0 commit comments