Skip to content

Commit 0979ba9

Browse files
committed
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 <[email protected]>
1 parent 5fd7219 commit 0979ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e_node/summary_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ var _ = SIGDescribe("Summary API", framework.WithNodeConformance(), func() {
259259
"InodesUsed": bounded(0, 1e8),
260260
}),
261261
"ProcessStats": ptrMatchAllFields(gstruct.Fields{
262-
"ProcessCount": bounded(0, 1e8),
262+
"ProcessCount": bounded(1, 1e8),
263263
}),
264264
})
265265

0 commit comments

Comments
 (0)