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.
pull/6/head
Filipe Brandenburger 2018-02-01 12:06:54 -08:00
parent 89cbdc0d6f
commit 17d5525356
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ var _ = SIGDescribe("Kubelet [Serial] [Slow]", func() {
podsPerNode: 100, podsPerNode: 100,
memLimits: framework.ResourceUsagePerContainer{ memLimits: framework.ResourceUsagePerContainer{
stats.SystemContainerKubelet: &framework.ContainerResourceUsage{MemoryRSSInBytes: 300 * 1024 * 1024}, stats.SystemContainerKubelet: &framework.ContainerResourceUsage{MemoryRSSInBytes: 300 * 1024 * 1024},
stats.SystemContainerRuntime: &framework.ContainerResourceUsage{MemoryRSSInBytes: 300 * 1024 * 1024}, stats.SystemContainerRuntime: &framework.ContainerResourceUsage{MemoryRSSInBytes: 350 * 1024 * 1024},
}, },
}, },
} }