Merge pull request #130541 from swatisehgal/distribute-across-numa-beta-graduation

node: cpu-mgr: Graduation of `distribute-cpus-across-numa` policy option to Beta
This commit is contained in:
Kubernetes Prow Robot 2025-03-19 16:12:33 -07:00 committed by GitHub
commit 648620da0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,6 @@ const (
var ( var (
alphaOptions = sets.New[string]( alphaOptions = sets.New[string](
DistributeCPUsAcrossNUMAOption,
AlignBySocketOption, AlignBySocketOption,
DistributeCPUsAcrossCoresOption, DistributeCPUsAcrossCoresOption,
PreferAlignByUnCoreCacheOption, PreferAlignByUnCoreCacheOption,
@ -47,6 +46,7 @@ var (
betaOptions = sets.New[string]( betaOptions = sets.New[string](
FullPCPUsOnlyOption, FullPCPUsOnlyOption,
StrictCPUReservationOption, StrictCPUReservationOption,
DistributeCPUsAcrossNUMAOption,
) )
stableOptions = sets.New[string]() stableOptions = sets.New[string]()
) )

View File

@ -96,14 +96,14 @@ func TestPolicyOptionsAvailable(t *testing.T) {
}, },
{ {
option: DistributeCPUsAcrossNUMAOption, option: DistributeCPUsAcrossNUMAOption,
featureGate: pkgfeatures.CPUManagerPolicyAlphaOptions, featureGate: pkgfeatures.CPUManagerPolicyBetaOptions,
featureGateEnable: true, featureGateEnable: true,
expectedAvailable: true, expectedAvailable: true,
}, },
{ {
option: DistributeCPUsAcrossNUMAOption, option: DistributeCPUsAcrossNUMAOption,
featureGate: pkgfeatures.CPUManagerPolicyBetaOptions, featureGate: pkgfeatures.CPUManagerPolicyBetaOptions,
featureGateEnable: true, featureGateEnable: false,
expectedAvailable: false, expectedAvailable: false,
}, },
{ {