From a836d5ad9137c7c80980b40501198087046cb6e1 Mon Sep 17 00:00:00 2001 From: Mikolaj Umanski Date: Mon, 31 Jul 2023 14:25:35 -0700 Subject: [PATCH] feat: add range min/max for custom node config GA changes for 2023-07-01 API --- .../aks/stable/2023-07-01/managedClusters.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2023-07-01/managedClusters.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2023-07-01/managedClusters.json index 9812e3e21d79..ad716f3d2652 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2023-07-01/managedClusters.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2023-07-01/managedClusters.json @@ -5637,6 +5637,8 @@ "netIpv4TcpkeepaliveIntvl": { "type": "integer", "format": "int32", + "minimum": 10, + "maximum": 90, "description": "Sysctl setting net.ipv4.tcp_keepalive_intvl." }, "netIpv4TcpTwReuse": { @@ -5665,11 +5667,15 @@ "netNetfilterNfConntrackMax": { "type": "integer", "format": "int32", + "minimum": 131072, + "maximum": 2097152, "description": "Sysctl setting net.netfilter.nf_conntrack_max." }, "netNetfilterNfConntrackBuckets": { "type": "integer", "format": "int32", + "minimum": 65536, + "maximum": 524288, "description": "Sysctl setting net.netfilter.nf_conntrack_buckets." }, "fsInotifyMaxUserWatches": {