From 17d55253560e3f755e88bd02de5d683097abc537 Mon Sep 17 00:00:00 2001 From: Filipe Brandenburger Date: Thu, 1 Feb 2018 12:06:54 -0800 Subject: [PATCH] Increase RSS limit for runtime from 300MB to 350MB on test creating 100 pods per node. In recent COS image, the typical RSS increased a bit. It seems it was already close to the limit and now surpassed it. --- test/e2e/node/kubelet_perf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/node/kubelet_perf.go b/test/e2e/node/kubelet_perf.go index f9185345f98..8f54434b5a8 100644 --- a/test/e2e/node/kubelet_perf.go +++ b/test/e2e/node/kubelet_perf.go @@ -257,7 +257,7 @@ var _ = SIGDescribe("Kubelet [Serial] [Slow]", func() { podsPerNode: 100, memLimits: framework.ResourceUsagePerContainer{ stats.SystemContainerKubelet: &framework.ContainerResourceUsage{MemoryRSSInBytes: 300 * 1024 * 1024}, - stats.SystemContainerRuntime: &framework.ContainerResourceUsage{MemoryRSSInBytes: 300 * 1024 * 1024}, + stats.SystemContainerRuntime: &framework.ContainerResourceUsage{MemoryRSSInBytes: 350 * 1024 * 1024}, }, }, }