From 0979ba9cb8c48a073f354f5ed49d29b4e803bc3a Mon Sep 17 00:00:00 2001 From: Peter Hunt Date: Thu, 28 Mar 2024 13:22:10 -0400 Subject: [PATCH] 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 --- test/e2e_node/summary_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/summary_test.go b/test/e2e_node/summary_test.go index 948d3605cf5..77c2fa394a6 100644 --- a/test/e2e_node/summary_test.go +++ b/test/e2e_node/summary_test.go @@ -259,7 +259,7 @@ var _ = SIGDescribe("Summary API", framework.WithNodeConformance(), func() { "InodesUsed": bounded(0, 1e8), }), "ProcessStats": ptrMatchAllFields(gstruct.Fields{ - "ProcessCount": bounded(0, 1e8), + "ProcessCount": bounded(1, 1e8), }), })