@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
2
2
kind : CustomResourceDefinition
3
3
metadata :
4
4
annotations :
5
- controller-gen.kubebuilder.io/version : v0.17.2
5
+ controller-gen.kubebuilder.io/version : v0.4.1
6
6
name : kueues.operator.openshift.io
7
7
spec :
8
8
group : operator.openshift.io
11
11
listKind : KueueList
12
12
plural : kueues
13
13
singular : kueue
14
- scope : Namespaced
14
+ scope : Cluster
15
15
versions :
16
16
- name : v1alpha1
17
17
schema :
54
54
required :
55
55
- integrations
56
56
properties :
57
+ gangSchedulingPolicy :
58
+ description : |-
59
+ gangSchedulingPolicy controls how Kueue admits workloads.
60
+ Gang Scheduling is the act of all or nothing scheduling.
61
+ Kueue provides this ability.
62
+ This field is optional.
63
+ type : object
64
+ required :
65
+ - policy
66
+ properties :
67
+ byWorkload :
68
+ description : |-
69
+ byWorkload controls how admission is done.
70
+ When admission is set to Sequential, only pods from the currently processing workload will be admitted.
71
+ Once all pods from the current workload are admitted, and ready, Kueue will process the next workload.
72
+ Sequential processing may slow down admission when the cluster has sufficient capacity for multiple workloads,
73
+ but provides a higher guarantee of workloads scheduling all pods together successfully.
74
+ When set to Parallel, pods from any workload will be admitted at any time.
75
+ This may lead to a deadlock where workloads are in contention for cluster capacity and
76
+ pods from another workload having successfully scheduled prevent pods from the current workload scheduling.
77
+ type : string
78
+ enum :
79
+ - Parallel
80
+ - Sequential
81
+ policy :
82
+ description : |-
83
+ policy allows you to enable and configure gang scheduling.
84
+ This is an optional field.
85
+ The allowed values are ByWorkload and Disabled.
86
+ The default value will be Disabled.
87
+ When set to ByWorkload, this means each workload is processed and considered
88
+ for admission as a single unit.
89
+ Where workloads do not become ready over time, the entire workload may then be evicted and retried at a later time.
90
+ type : string
91
+ enum :
92
+ - ByWorkload
93
+ - Disabled
94
+ x-kubernetes-validations :
95
+ - rule : ' has(self.policy) && self.policy == '' ByWorkload'' ? has(self.byWorkload) : !has(self.byWorkload)'
96
+ message : byWorkload is required when policy is ByWorkload, and forbidden otherwise
57
97
integrations :
58
98
description : |-
59
99
integrations is a required field that configures the Kueue's workload integrations.
@@ -158,6 +198,8 @@ spec:
158
198
maxItems : 64
159
199
items :
160
200
type : object
201
+ required :
202
+ - key
161
203
properties :
162
204
key :
163
205
description : |-
@@ -175,45 +217,6 @@ spec:
175
217
x-kubernetes-validations :
176
218
- rule : self.matches(r'^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?([a-z0-9]([-a-z0-9]*[a-z0-9])?)$') && self.size() <= 317
177
219
x-kubernetes-list-type : atomic
178
- <<<<<<< HEAD
179
- =======
180
- kueueGangSchedulingPolicy :
181
- description : |-
182
- kueueGangSchedulingPolicy controls how Kueue admits workloads.
183
- Gang Scheduling is the act of all or nothing scheduling.
184
- Kueue provides this ability.
185
- This field is optional.
186
- type : object
187
- properties :
188
- byWorkload :
189
- description : |-
190
- byWorkload controls how admission is done.
191
- When admission is set to Sequential, only pods from the currently processing workload will be admitted.
192
- Once all pods from the current workload are admitted, and ready, Kueue will process the next workload.
193
- Sequential processing may slow down admission when the cluster has sufficient capacity for multiple workloads,
194
- but provides a higher guarantee of workloads scheduling all pods together successfully.
195
- When set to Parallel, pods from any workload will be admitted at any time.
196
- This may lead to a deadlock where workloads are in contention for cluster capacity and
197
- pods from another workload having successfully scheduled prevent pods from the current workload scheduling.
198
- type : string
199
- enum :
200
- - Parallel
201
- - Sequential
202
- x-kubernetes-validations :
203
- - rule : self.policy==ByWorkload
204
- message : byWorkload is only valid if policy equals ByWorkload
205
- policy :
206
- description : |-
207
- policy allows for changing the kinds of gang scheduling Kueue does.
208
- This is an optional field.
209
- The allowed values are ByWorkload and Disabled.
210
- The default value will be Disabled.
211
- ByWorkload allows for configuration how admission is performed
212
- for Kueue.
213
- type : string
214
- enum :
215
- - ByWorkload
216
- - Disabled
217
220
preemption :
218
221
description : |-
219
222
preemption is the process of evicting one or more admitted Workloads to accommodate another Workload.
@@ -224,6 +227,17 @@ spec:
224
227
description : |-
225
228
preemptionStrategy are the types of preemption kueue allows.
226
229
Kueue has two types of preemption: classical and fair sharing.
230
+ Classical means that an incoming workload, which does
231
+ not fit within the unusued quota, is eligible to issue preemptions
232
+ when the requests of the workload are below the
233
+ resource flavor's nominal quota or borrowWithinCohort is enabled
234
+ on the Cluster Queue.
235
+ Fairsharing means that ClusterQueues with pending Workloads can preempt other Workloads
236
+ in their cohort until the preempting ClusterQueue
237
+ obtains an equal or weighted share of the borrowable resources.
238
+ The borrowable resources are the unused nominal quota
239
+ of all the ClusterQueues in the cohort.
240
+ FairSharing is a more heavy weight algorithm.
227
241
type : string
228
242
enum :
229
243
- Classical
@@ -235,21 +249,23 @@ spec:
235
249
This field is optional.
236
250
type : object
237
251
properties :
238
- queueLabelPolicy :
252
+ policy :
239
253
description : |-
240
- queueLabelPolicy controls whether or not Kueue reconciles
254
+ policy controls whether or not Kueue reconciles
241
255
jobs that don't set the label kueue.x-k8s.io/queue-name.
242
256
The allowed values are QueueNameRequired and QueueNameOptional.
243
- If set to QueueNameRequired, then those jobs will be suspended and never started unless
244
- they are assigned a queue and eventually admitted. This also applies to
245
- jobs created before starting the kueue controller.
257
+ QueueNameOptional means that workloads will be suspended on
258
+ creation and a label will be added via a mutating webhook.
259
+ QueueNameRequired means that workloads that are managed
260
+ by Kueue must have a the label kueue.x-k8s.io/queue-name.
261
+ If this label is not present on the workload, then Kueue will
262
+ ignore this workload.
246
263
Defaults to QueueNameRequired; therefore, those jobs are not managed and if they are created
247
264
unsuspended, they will start immediately.
248
265
type : string
249
266
enum :
250
267
- QueueNameRequired
251
268
- QueueNameOptional
252
- >>>>>>> 22bc930 (add FairSharing, QueueLabelPolicy and GangScheduling)
253
269
logLevel :
254
270
description : |-
255
271
logLevel is an intent based logging for an overall component. It does not give fine grained control, but it is a
0 commit comments