From 647309ffe011d39f0f3a1f6aa75c212cd58797e4 Mon Sep 17 00:00:00 2001 From: Joel Speed Date: Tue, 25 Jul 2023 15:21:05 +0200 Subject: [PATCH] Increase service idle max timeout to 100 minutes --- pkg/provider/azure_loadbalancer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/provider/azure_loadbalancer.go b/pkg/provider/azure_loadbalancer.go index bca5c3d2e0..6278e69271 100644 --- a/pkg/provider/azure_loadbalancer.go +++ b/pkg/provider/azure_loadbalancer.go @@ -2611,7 +2611,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)