mirror of https://github.com/k3s-io/k3s
increase the memory limits to max
parent
5c4b536f48
commit
833a28b640
|
@ -113,9 +113,9 @@ var _ = framework.KubeDescribe("Summary API [NodeConformance]", func() {
|
|||
"Time": recent(maxStatsAge),
|
||||
// Pods are limited by Node Allocatable
|
||||
"AvailableBytes": bounded(1*framework.Kb, memoryLimit),
|
||||
"UsageBytes": bounded(10*framework.Kb, 400*framework.Mb),
|
||||
"WorkingSetBytes": bounded(10*framework.Kb, 400*framework.Mb),
|
||||
"RSSBytes": bounded(1*framework.Kb, 160*framework.Mb),
|
||||
"UsageBytes": bounded(10*framework.Kb, memoryLimit),
|
||||
"WorkingSetBytes": bounded(10*framework.Kb, memoryLimit),
|
||||
"RSSBytes": bounded(1*framework.Kb, memoryLimit),
|
||||
"PageFaults": bounded(0, 1000000),
|
||||
"MajorPageFaults": bounded(0, 10),
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue