mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 01:06:27 +00:00
kubelet/stats: verify there is at least one process in each container
0 processes is too low a bar to be meaningfully testing that the process stats are being reported. Signed-off-by: Peter Hunt <pehunt@redhat.com>
This commit is contained in:
parent
5fd7219cf4
commit
0979ba9cb8
@ -259,7 +259,7 @@ var _ = SIGDescribe("Summary API", framework.WithNodeConformance(), func() {
|
|||||||
"InodesUsed": bounded(0, 1e8),
|
"InodesUsed": bounded(0, 1e8),
|
||||||
}),
|
}),
|
||||||
"ProcessStats": ptrMatchAllFields(gstruct.Fields{
|
"ProcessStats": ptrMatchAllFields(gstruct.Fields{
|
||||||
"ProcessCount": bounded(0, 1e8),
|
"ProcessCount": bounded(1, 1e8),
|
||||||
}),
|
}),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user