Skip to content

Commit 648620d

Browse files
authored
Merge pull request kubernetes#130541 from swatisehgal/distribute-across-numa-beta-graduation
node: cpu-mgr: Graduation of `distribute-cpus-across-numa` policy option to Beta
2 parents 67bdb11 + ba09a97 commit 648620d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pkg/kubelet/cm/cpumanager/policy_options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ const (
3939

4040
var (
4141
alphaOptions = sets.New[string](
42-
DistributeCPUsAcrossNUMAOption,
4342
AlignBySocketOption,
4443
DistributeCPUsAcrossCoresOption,
4544
PreferAlignByUnCoreCacheOption,
4645
)
4746
betaOptions = sets.New[string](
4847
FullPCPUsOnlyOption,
4948
StrictCPUReservationOption,
49+
DistributeCPUsAcrossNUMAOption,
5050
)
5151
stableOptions = sets.New[string]()
5252
)

pkg/kubelet/cm/cpumanager/policy_options_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,14 @@ func TestPolicyOptionsAvailable(t *testing.T) {
9696
},
9797
{
9898
option: DistributeCPUsAcrossNUMAOption,
99-
featureGate: pkgfeatures.CPUManagerPolicyAlphaOptions,
99+
featureGate: pkgfeatures.CPUManagerPolicyBetaOptions,
100100
featureGateEnable: true,
101101
expectedAvailable: true,
102102
},
103103
{
104104
option: DistributeCPUsAcrossNUMAOption,
105105
featureGate: pkgfeatures.CPUManagerPolicyBetaOptions,
106-
featureGateEnable: true,
106+
featureGateEnable: false,
107107
expectedAvailable: false,
108108
},
109109
{

0 commit comments

Comments
 (0)