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 <cmluciano@us.ibm.com>
This commit is contained in:
Christopher M. Luciano 2020-10-06 14:03:10 -04:00
parent 0ef37070dc
commit 22b8cd5e51
No known key found for this signature in database
GPG Key ID: 5148DBB31F2843F1

View File

@ -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)