We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b36103d commit abfda71Copy full SHA for abfda71
test/e2e/load_balancer.go
@@ -83,9 +83,10 @@ var _ = Describe("Service [Slow]", func() {
83
tcpIngressIP := framework.GetIngressPoint(&tcpService.Status.LoadBalancer.Ingress[0])
84
framework.Logf("TCP load balancer: %s", tcpIngressIP)
85
86
- // trjl - hide this?
87
- By("hitting the TCP service's NodePort")
88
- jig.TestReachableHTTP(nodeIP, tcpNodePort, framework.KubeProxyLagTimeout)
+ if f.NodePortTest {
+ By("hitting the TCP service's NodePort")
+ jig.TestReachableHTTP(nodeIP, tcpNodePort, framework.KubeProxyLagTimeout)
89
+ }
90
91
By("hitting the TCP service's LoadBalancer")
92
jig.TestReachableHTTP(tcpIngressIP, svcPort, loadBalancerLagTimeout)
0 commit comments