Merge pull request #121671 from kannon92/fix-swap-summary-failure

increase bounded limits for major page faults
This commit is contained in:
Kubernetes Prow Robot
2023-11-01 20:07:30 +01:00
committed by GitHub

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(),