mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 23:15:14 +00:00
DRA: Add DRAPrioritizedList feature gate for Prioritized Alternatives in Device Requests
This commit is contained in:
parent
ef1c659569
commit
0faebe30fd
@ -201,6 +201,14 @@ const (
|
||||
// is to move it into a separate KEP.
|
||||
DRAAdminAccess featuregate.Feature = "DRAAdminAccess"
|
||||
|
||||
// owner: @mortent
|
||||
// kep: http://kep.k8s.io/4816
|
||||
//
|
||||
// Enables support for providing a prioritized list of requests
|
||||
// for resources. The first entry that can be satisfied will
|
||||
// be selected.
|
||||
DRAPrioritizedList featuregate.Feature = "DRAPrioritizedList"
|
||||
|
||||
// owner: @pohly
|
||||
// kep: http://kep.k8s.io/4381
|
||||
//
|
||||
|
@ -173,6 +173,10 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate
|
||||
{Version: version.MustParse("1.32"), Default: false, PreRelease: featuregate.Alpha},
|
||||
},
|
||||
|
||||
DRAPrioritizedList: {
|
||||
{Version: version.MustParse("1.33"), Default: false, PreRelease: featuregate.Alpha},
|
||||
},
|
||||
|
||||
DynamicResourceAllocation: {
|
||||
{Version: version.MustParse("1.26"), Default: false, PreRelease: featuregate.Alpha},
|
||||
{Version: version.MustParse("1.32"), Default: false, PreRelease: featuregate.Beta},
|
||||
|
Loading…
Reference in New Issue
Block a user