From 0ec482308e22ea9d551c815f9bec1e8958137c4f Mon Sep 17 00:00:00 2001 From: David Ashpole Date: Mon, 12 Dec 2016 17:31:24 -0800 Subject: [PATCH] increase timeout and marked as flaky. decreased polling interval to better monitor eviction ordering --- test/e2e_node/inode_eviction_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e_node/inode_eviction_test.go b/test/e2e_node/inode_eviction_test.go index 835827ea1dc..a3be5cc9155 100644 --- a/test/e2e_node/inode_eviction_test.go +++ b/test/e2e_node/inode_eviction_test.go @@ -32,13 +32,13 @@ import ( const ( postTestConditionMonitoringPeriod = 2 * time.Minute - evictionPollInterval = 5 * time.Second + evictionPollInterval = 2 * time.Second // pressure conditions often surface after evictions because of delay in propegation of metrics to pressure // we wait this period after evictions to make sure that we wait out this delay pressureDelay = 20 * time.Second ) -var _ = framework.KubeDescribe("InodeEviction [Slow] [Serial] [Disruptive]", func() { +var _ = framework.KubeDescribe("InodeEviction [Slow] [Serial] [Disruptive] [Flaky]", func() { f := framework.NewDefaultFramework("inode-eviction-test") podTestSpecs := []podTestSpec{ @@ -109,7 +109,7 @@ var _ = framework.KubeDescribe("InodeEviction [Slow] [Serial] [Disruptive]", fun }, }, } - evictionTestTimeout := 10 * time.Minute + evictionTestTimeout := 60 * time.Minute testCondition := "Disk Pressure due to Inodes" runEvictionTest(f, testCondition, podTestSpecs, evictionTestTimeout, hasInodePressure)