From f37cdb3a92090e44754bce0c062e44cc37e47cad Mon Sep 17 00:00:00 2001 From: Paul Lewis Date: Thu, 8 Aug 2024 09:27:50 +0100 Subject: [PATCH 1/2] Fixed broken link to Prometheus Operator documentation (#708) --- helper/src/configpresets/principals.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/src/configpresets/principals.json b/helper/src/configpresets/principals.json index 9688dc806..04e4255e0 100644 --- a/helper/src/configpresets/principals.json +++ b/helper/src/configpresets/principals.json @@ -51,7 +51,7 @@ }, { "description": "Prometheus/Grafana Monitoring", - "linksrc": "https://prometheus-operator.dev/docs/user-guides/getting-started/" + "linksrc": "https://prometheus-operator.dev/docs/getting-started/introduction/" }, { "description": "DockerHub container registry" From b9e318c88f4650110ef9fca29bbff98d3ad5a904 Mon Sep 17 00:00:00 2001 From: samaea <32162601+samaea@users.noreply.github.com> Date: Fri, 9 Aug 2024 19:06:21 +0100 Subject: [PATCH 2/2] NAT Gateway hot fix. (#710) --- bicep/main.bicep | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/bicep/main.bicep b/bicep/main.bicep index 0fb71ced5..7a6ebd8aa 100644 --- a/bicep/main.bicep +++ b/bicep/main.bicep @@ -1244,11 +1244,13 @@ output aksPrivateDnsZoneName string = enablePrivateCluster && privateClusterDns @description('Needing to seperately declare and union this because of https://github.com/Azure/AKS-Construction/issues/344') var managedNATGatewayProfile = { - natGatewayProfile : { - managedOutboundIPProfile: { - count: natGwIpCount + networkProfile: { + natGatewayProfile : { + managedOutboundIPProfile: { + count: natGwIpCount + } + idleTimeoutInMinutes: natGwIdleTimeout } - idleTimeoutInMinutes: natGwIdleTimeout } }