@@ -1989,8 +1989,9 @@ var _ = SIGDescribe("CPU Manager Incompatibility Pod Level Resources", ginkgo.Or
1989
1989
ginkgo .When ("running guaranteed pod level resources tests" , ginkgo .Label ("guaranteed pod level resources" , "reserved-cpus" ), func () {
1990
1990
ginkgo .It ("should let the container access all the online CPUs without a reserved CPUs set" , func (ctx context.Context ) {
1991
1991
updateKubeletConfigIfNeeded (ctx , f , configureCPUManagerInKubelet (oldCfg , & cpuManagerKubeletArguments {
1992
- policyName : string (cpumanager .PolicyStatic ),
1993
- reservedSystemCPUs : cpuset.CPUSet {},
1992
+ policyName : string (cpumanager .PolicyStatic ),
1993
+ reservedSystemCPUs : cpuset.CPUSet {},
1994
+ enablePodLevelResources : true ,
1994
1995
}))
1995
1996
1996
1997
pod := makeCPUManagerPod ("gu-pod-level-resources" , []ctnAttribute {
@@ -2023,8 +2024,9 @@ var _ = SIGDescribe("CPU Manager Incompatibility Pod Level Resources", ginkgo.Or
2023
2024
reservedCPUs = cpuset .New (0 )
2024
2025
2025
2026
updateKubeletConfigIfNeeded (ctx , f , configureCPUManagerInKubelet (oldCfg , & cpuManagerKubeletArguments {
2026
- policyName : string (cpumanager .PolicyStatic ),
2027
- reservedSystemCPUs : reservedCPUs , // Not really needed for the tests but helps to make a more precise check
2027
+ policyName : string (cpumanager .PolicyStatic ),
2028
+ reservedSystemCPUs : reservedCPUs , // Not really needed for the tests but helps to make a more precise check
2029
+ enablePodLevelResources : true ,
2028
2030
}))
2029
2031
2030
2032
pod := makeCPUManagerPod ("gu-pod-level-resources" , []ctnAttribute {
0 commit comments