increase bounded limits for major page faults

This commit is contained in:
Kevin Hannon 2023-11-01 09:57:37 -04:00
parent c73ab5162b
commit ecb32a3e29

View File

@ -110,7 +110,7 @@ var _ = SIGDescribe("Summary API [NodeConformance]", func() {
// this now returns /sys/fs/cgroup/memory.stat total_rss
"RSSBytes": bounded(1*e2evolume.Mb, memoryLimit),
"PageFaults": bounded(1000, 1e9),
"MajorPageFaults": bounded(0, 100000),
"MajorPageFaults": bounded(0, 1e9),
}),
"Swap": swapExpectation(memoryLimit),
"Accelerators": gomega.BeEmpty(),