From 61fc27e3cbe3cceca2b6bb9ac6cf94b20b73fb43 Mon Sep 17 00:00:00 2001 From: Random-Liu Date: Fri, 5 Aug 2016 14:06:34 -0700 Subject: [PATCH] Mark "downward API volume should update annotations / labels on modification" as flaky. --- test/e2e/common/downwardapi_volume.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/e2e/common/downwardapi_volume.go b/test/e2e/common/downwardapi_volume.go index 7154fc64a2e..d5503f25d74 100644 --- a/test/e2e/common/downwardapi_volume.go +++ b/test/e2e/common/downwardapi_volume.go @@ -61,7 +61,9 @@ var _ = framework.KubeDescribe("Downward API volume", func() { }) }) - It("should update labels on modification [Conformance]", func() { + // Mark the following 2 tests as [Flaky] because of https://github.com/kubernetes/kubernetes/issues/29633, + // we should re-enable these tests when the issue is fixed. + It("should update labels on modification [Conformance] [Flaky]", func() { labels := map[string]string{} labels["key1"] = "value1" labels["key2"] = "value2" @@ -92,7 +94,7 @@ var _ = framework.KubeDescribe("Downward API volume", func() { podLogTimeout, framework.Poll).Should(ContainSubstring("key3=\"value3\"\n")) }) - It("should update annotations on modification [Conformance]", func() { + It("should update annotations on modification [Conformance] [Flaky]", func() { annotations := map[string]string{} annotations["builder"] = "bar" podName := "annotationupdate" + string(uuid.NewUUID())