Skip to content

Commit

Permalink
Merge pull request #4392 from feiskyer/cherry-4361
Browse files Browse the repository at this point in the history
[release-1.25] Increase service idle max timeout to 100 minutes
  • Loading branch information
k8s-ci-robot committed Aug 2, 2023
2 parents 54f9e1d + 6125604 commit 9145878
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 @@ -2286,7 +2286,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 9145878

Please sign in to comment.