@@ -177,10 +177,10 @@ var _ = g.Describe("[Suite:openshift/machine-config-operator/disruptive][Suite:o
177177 err = oc .AdminKubeClient ().CoreV1 ().Pods (namespace ).Delete (ctx , podName , metav1.DeleteOptions {})
178178 o .Expect (err ).NotTo (o .HaveOccurred (), "Should be able to delete test pod" )
179179
180- // Now apply KubeletConfig and verify NODE_SIZING_ENABLED=true
180+ // Now apply KubeletConfig and verify NODE_SIZING_ENABLED=false
181181
182- g .By ("Creating KubeletConfig with autoSizingReserved=true " )
183- autoSizingReserved := true
182+ g .By ("Creating KubeletConfig with autoSizingReserved=false " )
183+ autoSizingReserved := false
184184 kubeletConfig := & mcfgv1.KubeletConfig {
185185 TypeMeta : metav1.TypeMeta {
186186 APIVersion : "machineconfiguration.openshift.io/v1" ,
@@ -226,7 +226,7 @@ var _ = g.Describe("[Suite:openshift/machine-config-operator/disruptive][Suite:o
226226 }, 30 * time .Second , 5 * time .Second ).Should (o .Succeed (), "KubeletConfig should be created" )
227227
228228 o .Expect (createdKC .Spec .AutoSizingReserved ).NotTo (o .BeNil (), "AutoSizingReserved should not be nil" )
229- o .Expect (* createdKC .Spec .AutoSizingReserved ).To (o .BeTrue (), "AutoSizingReserved should be true " )
229+ o .Expect (* createdKC .Spec .AutoSizingReserved ).To (o .BeFalse (), "AutoSizingReserved should be false " )
230230
231231 g .By (fmt .Sprintf ("Waiting for %s MCP to start updating" , testMCPName ))
232232 o .Eventually (func () bool {
0 commit comments