Commit 3db1a6c3 authored by k8s-merge-robot's avatar k8s-merge-robot

Merge pull request #19976 from aarondav/elb-timeout

Auto commit by PR queue bot
parents f684e80b 97689c32
...@@ -195,10 +195,10 @@ func (s *AWSCloud) ensureLoadBalancerHealthCheck(loadBalancer *elb.LoadBalancerD ...@@ -195,10 +195,10 @@ func (s *AWSCloud) ensureLoadBalancerHealthCheck(loadBalancer *elb.LoadBalancerD
actual := loadBalancer.HealthCheck actual := loadBalancer.HealthCheck
// Default AWS settings // Default AWS settings
expectedHealthyThreshold := int64(10) expectedHealthyThreshold := int64(2)
expectedUnhealthyThreshold := int64(2) expectedUnhealthyThreshold := int64(6)
expectedTimeout := int64(5) expectedTimeout := int64(5)
expectedInterval := int64(30) expectedInterval := int64(10)
// We only a TCP health-check on the first port // We only a TCP health-check on the first port
expectedTarget := "" expectedTarget := ""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment