mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 11:21:47 +00:00
Merge pull request #78992 from smarterclayton/increase_timeout
Increase load balancer timeout in test cases
This commit is contained in:
commit
081f477560
@ -67,7 +67,11 @@ func (t *ServiceUpgradeTest) Setup(f *framework.Framework) {
|
||||
|
||||
// Hit it once before considering ourselves ready
|
||||
ginkgo.By("hitting the pod through the service's LoadBalancer")
|
||||
jig.TestReachableHTTP(tcpIngressIP, svcPort, framework.LoadBalancerLagTimeoutDefault)
|
||||
timeout := framework.LoadBalancerLagTimeoutDefault
|
||||
if framework.ProviderIs("aws") {
|
||||
timeout = framework.LoadBalancerLagTimeoutAWS
|
||||
}
|
||||
jig.TestReachableHTTP(tcpIngressIP, svcPort, timeout)
|
||||
|
||||
t.jig = jig
|
||||
t.tcpService = tcpService
|
||||
|
Loading…
Reference in New Issue
Block a user