From f00ac0694b6c08e663ab72bb63b35d202f110045 Mon Sep 17 00:00:00 2001 From: Aaron Crickenberger Date: Tue, 14 Jan 2020 16:52:00 -0800 Subject: [PATCH] Mark session affinity tests as [Flaky] They've been in the top 10 flakes for a while now, with no immediate fix pending --- test/e2e/network/service.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/e2e/network/service.go b/test/e2e/network/service.go index 9fa046769b3..4bcd5ff55ab 100644 --- a/test/e2e/network/service.go +++ b/test/e2e/network/service.go @@ -2353,28 +2353,28 @@ var _ = SIGDescribe("Services", func() { }) // [LinuxOnly]: Windows does not support session affinity. - ginkgo.It("should have session affinity work for service with type clusterIP [LinuxOnly]", func() { + ginkgo.It("should have session affinity work for service with type clusterIP [LinuxOnly] [Flaky]", func() { svc := getServeHostnameService("affinity-clusterip") svc.Spec.Type = v1.ServiceTypeClusterIP execAffinityTestForNonLBService(f, cs, svc) }) // [LinuxOnly]: Windows does not support session affinity. - ginkgo.It("should be able to switch session affinity for service with type clusterIP [LinuxOnly]", func() { + ginkgo.It("should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Flaky]", func() { svc := getServeHostnameService("affinity-clusterip-transition") svc.Spec.Type = v1.ServiceTypeClusterIP execAffinityTestForNonLBServiceWithTransition(f, cs, svc) }) // [LinuxOnly]: Windows does not support session affinity. - ginkgo.It("should have session affinity work for NodePort service [LinuxOnly]", func() { + ginkgo.It("should have session affinity work for NodePort service [LinuxOnly] [Flaky]", func() { svc := getServeHostnameService("affinity-nodeport") svc.Spec.Type = v1.ServiceTypeNodePort execAffinityTestForNonLBService(f, cs, svc) }) // [LinuxOnly]: Windows does not support session affinity. - ginkgo.It("should be able to switch session affinity for NodePort service [LinuxOnly]", func() { + ginkgo.It("should be able to switch session affinity for NodePort service [LinuxOnly] [Flaky]", func() { svc := getServeHostnameService("affinity-nodeport-transition") svc.Spec.Type = v1.ServiceTypeNodePort execAffinityTestForNonLBServiceWithTransition(f, cs, svc)