File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
pkg/kubelet/cm/cpumanager Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,14 +39,14 @@ const (
3939
4040var (
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)
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments