node: cpu-mgr: Graduation of distribute-cpus-across-numa to Beta

Signed-off-by: Swati Sehgal <swsehgal@redhat.com>
This commit is contained in:
Swati Sehgal 2025-03-03 17:56:29 +00:00
parent f9b27edf39
commit ba09a97341
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,
},
{