From 138f18cc92e7c646931c902ce8c3866fe8704053 Mon Sep 17 00:00:00 2001 From: Dawn Chen Date: Fri, 22 Jan 2016 09:41:17 -0800 Subject: [PATCH] Move test (Pods should not back-off restarting a container on LivenessProbe failure) out of flaky test. For last 100+ runs, the test never fail in kubernetes-e2e-gce-flaky build. The only exception is build 10313, but the failure is caused by previous flaky test, not this one itself. --- test/e2e/pods.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/e2e/pods.go b/test/e2e/pods.go index f76aa8dfd31..92899e667e5 100644 --- a/test/e2e/pods.go +++ b/test/e2e/pods.go @@ -897,8 +897,7 @@ var _ = Describe("Pods", func() { } }) - // Flaky issue #18293 - It("should not back-off restarting a container on LivenessProbe failure [Flaky]", func() { + It("should not back-off restarting a container on LivenessProbe failure [Serial]", func() { podClient := framework.Client.Pods(framework.Namespace.Name) podName := "pod-back-off-liveness" containerName := "back-off-liveness"