From 87ed7dc1ad419218d054c15b273411d4dc3cda31 Mon Sep 17 00:00:00 2001 From: Aritoki Takada <81674301+atakadams@users.noreply.github.com> Date: Thu, 4 Jul 2024 11:28:25 +0900 Subject: [PATCH] Correct max val. of azure-load-balancer-tcp-idle-timeout This updates the max value description of service.beta.kubernetes.io/azure-load-balancer-tcp-idle-timeout from 30 to 100. Previously the max value was limited to 30 but now it's incresed to fit the underlying ALB capability. Configurable TCP Idle timeout limit does not match Azure limit https://github.com/kubernetes-sigs/cloud-provider-azure/issues/4360 Increase service idle max timeout to 100 minutes https://github.com/kubernetes-sigs/cloud-provider-azure/pull/4361 --- articles/aks/load-balancer-standard.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/aks/load-balancer-standard.md b/articles/aks/load-balancer-standard.md index 5260ef304b5e8..d61d867ead901 100644 --- a/articles/aks/load-balancer-standard.md +++ b/articles/aks/load-balancer-standard.md @@ -418,7 +418,7 @@ The following annotations are supported for Kubernetes services with type `LoadB | `service.beta.kubernetes.io/azure-shared-securityrule` | `true` or `false` | Specify exposing the service through a potentially shared Azure security rule to increase service exposure, utilizing Azure [Augmented Security Rules][augmented-security-rules] in Network Security groups. | | `service.beta.kubernetes.io/azure-load-balancer-resource-group` | Name of the resource group | Specify the resource group of load balancer public IPs that aren't in the same resource group as the cluster infrastructure (node resource group). | | `service.beta.kubernetes.io/azure-allowed-service-tags` | List of allowed service tags | Specify a list of allowed [service tags][service-tags] separated by commas. | -| `service.beta.kubernetes.io/azure-load-balancer-tcp-idle-timeout` | TCP idle timeouts in minutes | Specify the time in minutes for TCP connection idle timeouts to occur on the load balancer. The default and minimum value is 4. The maximum value is 30. The value must be an integer. | +| `service.beta.kubernetes.io/azure-load-balancer-tcp-idle-timeout` | TCP idle timeouts in minutes | Specify the time in minutes for TCP connection idle timeouts to occur on the load balancer. The default and minimum value is 4. The maximum value is 100. The value must be an integer. | | `service.beta.kubernetes.io/azure-load-balancer-disable-tcp-reset` | `true` or `false` | Specify whether the load balancer should disable TCP reset on idle timeout. | | `service.beta.kubernetes.io/azure-load-balancer-ipv4` | IPv4 address | Specify the IPv4 address to assign to the load balancer. | | `service.beta.kubernetes.io/azure-load-balancer-ipv6` | IPv6 address | Specify the IPv6 address to assign to the load balancer. |