DRA: Add DRAPrioritizedList feature gate for Prioritized Alternatives in Device Requests

This commit is contained in:
Morten Torkildsen 2024-11-12 22:58:57 +00:00
parent ef1c659569
commit 0faebe30fd
2 changed files with 12 additions and 0 deletions

View File

@ -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
//

View File

@ -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},