From 22b8cd5e51b27d79df1aa603333db888e5d312e8 Mon Sep 17 00:00:00 2001 From: "Christopher M. Luciano" Date: Tue, 6 Oct 2020 14:03:10 -0400 Subject: [PATCH] proxy: label kube_proxy test with more unique label The kube_proxy SIGDescribe previously only had Network in the title and made it more difficult to select just the test cases in the kube_proxy file and would end up running anything with Network in the text area of SIGDescribe e2e tests. Signed-off-by: Christopher M. Luciano --- test/e2e/network/kube_proxy.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/network/kube_proxy.go b/test/e2e/network/kube_proxy.go index aaff522ed0e..82277d5b125 100644 --- a/test/e2e/network/kube_proxy.go +++ b/test/e2e/network/kube_proxy.go @@ -42,14 +42,14 @@ import ( var kubeProxyE2eImage = imageutils.GetE2EImage(imageutils.Agnhost) -var _ = SIGDescribe("Network", func() { +var _ = SIGDescribe("KubeProxy", func() { const ( testDaemonHTTPPort = 11301 testDaemonTCPPort = 11302 postFinTimeoutSeconds = 30 ) - fr := framework.NewDefaultFramework("network") + fr := framework.NewDefaultFramework("kube-proxy") ginkgo.It("should set TCP CLOSE_WAIT timeout [Privileged]", func() { nodes, err := e2enode.GetBoundedReadySchedulableNodes(fr.ClientSet, 2)