e2e: Don't try to create a UDP LoadBalancer on AWS

AWS doesn't support type=LoadBalancer with UDP services.  For now, we
simply skip over the test with type=LoadBalancer on AWS for the UDP
service.

Fix #20911
This commit is contained in:
Justin Santa Barbara
2016-02-09 21:59:35 -05:00
parent 41a98b43e4
commit a0093eb503
2 changed files with 57 additions and 33 deletions

View File

@@ -200,7 +200,7 @@ func (s *AWSCloud) ensureLoadBalancerHealthCheck(loadBalancer *elb.LoadBalancerD
expectedTimeout := int64(5)
expectedInterval := int64(10)
// We only a TCP health-check on the first port
// We only configure a TCP health-check on the first port
expectedTarget := ""
for _, listener := range listeners {
if listener.InstancePort == nil {