From 1b0fd15c6713dfe73ec41c5b3701919b767eef53 Mon Sep 17 00:00:00 2001 From: Rui Gao Date: Thu, 20 Aug 2026 05:12:37 +0000 Subject: [PATCH] fix: update AKS deploy bicep settings Co-Authored-By: Claude --- contrib/aks/aks.bicep | 2 +- contrib/aks/provisionscript.bicep | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/aks/aks.bicep b/contrib/aks/aks.bicep index 52147e32..8697edbf 100644 --- a/contrib/aks/aks.bicep +++ b/contrib/aks/aks.bicep @@ -236,7 +236,7 @@ resource prometheusContainer 'Microsoft.Storage/storageAccounts/blobServices/con } // AKS -resource aks 'Microsoft.ContainerService/managedClusters@2024-03-02-preview' = { +resource aks 'Microsoft.ContainerService/managedClusters@2024-05-01' = { name: 'aks-openpai' location: location dependsOn: [ diff --git a/contrib/aks/provisionscript.bicep b/contrib/aks/provisionscript.bicep index 08ef8a38..3c2ddfe3 100644 --- a/contrib/aks/provisionscript.bicep +++ b/contrib/aks/provisionscript.bicep @@ -2,7 +2,7 @@ param hubsub string param hubgroup string param extversion string -resource aks 'Microsoft.ContainerService/managedClusters@2024-03-02-preview' existing = { +resource aks 'Microsoft.ContainerService/managedClusters@2024-05-01' existing = { name: 'aks-openpai' scope: resourceGroup(hubsub, hubgroup) }