Skip to content

Commit

Permalink
Merge pull request #4361 from JoelSpeed/extend-idle-timeout-max
Browse files Browse the repository at this point in the history
Increase service idle max timeout to 100 minutes
  • Loading branch information
k8s-ci-robot authored Jul 28, 2023
2 parents 0cfeb04 + 647309f commit 0889cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/provider/azure_loadbalancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -2631,7 +2631,7 @@ func (az *Cloud) getExpectedLoadBalancingRulePropertiesForPort(
if lbIdleTimeout, err = consts.Getint32ValueFromK8sSvcAnnotation(service.Annotations, consts.ServiceAnnotationLoadBalancerIdleTimeout, func(val *int32) error {
const (
min = 4
max = 30
max = 100
)
if *val < min || *val > max {
return fmt.Errorf("idle timeout value must be a whole number representing minutes between %d and %d, actual value: %d", min, max, *val)
Expand Down

0 comments on commit 0889cfe

Please sign in to comment.