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 (
alphaOptions = sets.New[string](
DistributeCPUsAcrossNUMAOption,
AlignBySocketOption,
DistributeCPUsAcrossCoresOption,
PreferAlignByUnCoreCacheOption,
@ -47,6 +46,7 @@ var (
betaOptions = sets.New[string](
FullPCPUsOnlyOption,
StrictCPUReservationOption,
DistributeCPUsAcrossNUMAOption,
)
stableOptions = sets.New[string]()
)

View File

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