From e052fd949b88fcdfa1d8f481c6ab86c32d4c603d Mon Sep 17 00:00:00 2001 From: Zhou Fang Date: Tue, 9 Aug 2016 16:13:09 -0700 Subject: [PATCH] set larger pod creation latency limit --- test/e2e_node/density_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/e2e_node/density_test.go b/test/e2e_node/density_test.go index 93959b10c33..ef5ea23846d 100644 --- a/test/e2e_node/density_test.go +++ b/test/e2e_node/density_test.go @@ -73,6 +73,7 @@ var _ = framework.KubeDescribe("Density [Serial] [Slow]", func() { }) Context("create a batch of pods", func() { + // Zhou(ToDo): add more tests and the values are generous, set more precise limits after benchmark densityTests := []DensityTest{ { podsNr: 10, @@ -87,8 +88,8 @@ var _ = framework.KubeDescribe("Density [Serial] [Slow]", func() { }, // percentile limit of single pod startup latency podStartupLimits: framework.LatencyMetric{ - Perc50: 10 * time.Second, - Perc90: 15 * time.Second, + Perc50: 16 * time.Second, + Perc90: 18 * time.Second, Perc99: 20 * time.Second, }, // upbound of startup latency of a batch of pods @@ -191,6 +192,7 @@ var _ = framework.KubeDescribe("Density [Serial] [Slow]", func() { }) Context("create a sequence of pods", func() { + // Zhou(ToDo): add more tests and the values are generous, set more precise limits after benchmark densityTests := []DensityTest{ { podsNr: 10,