generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bbddce
commit 2e08797
Showing
2 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# KEP-2936: LocalQueue defaulting | ||
|
||
<!-- toc --> | ||
- [Summary](#summary) | ||
- [Motivation](#motivation) | ||
- [Goals](#goals) | ||
- [Non-Goals](#non-goals) | ||
- [Proposal](#proposal) | ||
- [User Stories](#user-stories) | ||
- [Story 1](#story-1) | ||
- [Notes/Constraints/Caveats (Optional)](#notesconstraintscaveats-optional) | ||
- [Risks and Mitigations](#risks-and-mitigations) | ||
- [Design Details](#design-details) | ||
- [Test Plan](#test-plan) | ||
- [Alternatives](#alternatives) | ||
<!-- /toc --> | ||
|
||
## Summary | ||
|
||
This KEP introduces a defaulting LocalQueue mechanism for the jobs that don't have | ||
LocalQueue name label specified. | ||
|
||
## Motivation | ||
|
||
Simplify user experience with Kueue. | ||
|
||
### Goals | ||
|
||
- default LocalQueue for jobs that don't specify LocalQueue name label. | ||
|
||
### Non-Goals | ||
|
||
- create a default LocalQueue. | ||
|
||
## Proposal | ||
|
||
If the Job doesn't have label for LocalQueue in its Spec and the LocalQueue | ||
with name `default` is present in Job's namespace and LocalQueueDefaulting feature gate | ||
is enabled, the `kueue.x-k8s.io/queue-name:default` anotation will be added to the Job. | ||
|
||
The `default` LocalQueue itself should be created manually by administrator. | ||
|
||
### User Stories | ||
|
||
#### Story 1 | ||
|
||
Administrator created a single `default` LocalQueue per namespace. Users doesn't need to specify | ||
the LocalQueue label in order for workload to be scheduled. | ||
|
||
### Notes/Constraints/Caveats (Optional) | ||
|
||
manageJobsWithoutQueueName doesn't work with this feature, since Kueue add the LocalQueue | ||
label. | ||
|
||
### Risks and Mitigations | ||
|
||
## Design Details | ||
|
||
Update defautling webhook for all types of job to add `kueue.x-k8s.io/queue-name:default` | ||
label if the label is not present and the feature gate is enabled. | ||
|
||
### Test Plan | ||
|
||
[x] I/we understand the owners of the involved components may require updates to | ||
existing tests to make this code solid enough prior to committing the changes | ||
necessary to implement this enhancement. | ||
|
||
## Alternatives | ||
|
||
Add default field to LocalQueue spec, that could be set to true|false. There are two | ||
scenarios possible: | ||
|
||
- If only one LocalQueue is allowed to be set as default, then we should have | ||
a validation webhook which validating the object based on other objects in | ||
the cluster. | ||
- If multiple queues could be set to default, we have to choose which one | ||
is an actual default. Usually the creating timestamp is used for comparison. | ||
However having multiple default LocalQueues with arbitrary names makes their management | ||
more complex. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
title: LocalQueue defaulting | ||
kep-number: 2936 | ||
authors: | ||
- "@yaroslava-serdiuk" | ||
status: implementable | ||
creation-date: 2024-11-25 | ||
reviewers: | ||
- "@pbundyra" | ||
- "@tenzen-y" | ||
- "@mimowo" | ||
approvers: | ||
- "@mimowo" | ||
|
||
# The target maturity stage in the current dev cycle for this KEP. | ||
stage: alpha | ||
|
||
# The most recent milestone for which work toward delivery of this KEP has been | ||
# done. This can be the current (upcoming) milestone, if it is being actively | ||
# worked on. | ||
latest-milestone: "v0.10" | ||
|
||
# The milestone at which this feature was, or is targeted to be, at each stage. | ||
milestone: | ||
alpha: "v0.10" | ||
beta: | ||
stable: | ||
|
||
# The following PRR answers are required at alpha release | ||
# List the feature gate name and the components for which it must be enabled | ||
feature-gates: | ||
- name: KueueDefaulting | ||
disable-supported: true |