@@ -120,12 +120,12 @@ var _ = SIGDescribe("Summary API", framework.WithNodeConformance(), func() {
120
120
})
121
121
}
122
122
expectedPageFaultsUpperBound := 1000000
123
- expectedMajorPageFaultsUpperBound := 15
123
+ expectedMajorPageFaultsUpperBound := 1e9
124
124
if IsCgroup2UnifiedMode () {
125
125
// On cgroupv2 these stats are recursive, so make sure they are at least like the value set
126
126
// above for the container.
127
127
expectedPageFaultsUpperBound = 1e9
128
- expectedMajorPageFaultsUpperBound = 100000
128
+ expectedMajorPageFaultsUpperBound = 1e9
129
129
}
130
130
131
131
podsContExpectations := sysContExpectations ().(* gstruct.FieldsMatcher )
@@ -158,7 +158,7 @@ var _ = SIGDescribe("Summary API", framework.WithNodeConformance(), func() {
158
158
"WorkingSetBytes" : bounded (100 * e2evolume .Kb , memoryLimit ),
159
159
"RSSBytes" : bounded (100 * e2evolume .Kb , memoryLimit ),
160
160
"PageFaults" : bounded (1000 , 1e9 ),
161
- "MajorPageFaults" : bounded (0 , 100000 ),
161
+ "MajorPageFaults" : bounded (0 , 1e9 ),
162
162
})
163
163
systemContainers ["misc" ] = miscContExpectations
164
164
}
@@ -281,7 +281,7 @@ var _ = SIGDescribe("Summary API", framework.WithNodeConformance(), func() {
281
281
// this now returns /sys/fs/cgroup/memory.stat total_rss
282
282
"RSSBytes" : bounded (1 * e2evolume .Kb , memoryLimit ),
283
283
"PageFaults" : bounded (1000 , 1e9 ),
284
- "MajorPageFaults" : bounded (0 , 100000 ),
284
+ "MajorPageFaults" : bounded (0 , 1e9 ),
285
285
}),
286
286
"Swap" : swapExpectation (memoryLimit ),
287
287
// TODO(#28407): Handle non-eth0 network interface names.
0 commit comments