Skip to content

Commit

Permalink
fixed the outdated AKS version for eastus2 (#367)
Browse files Browse the repository at this point in the history
the current latest supported version is 1.25.5. Version 1.25.2 specified in this template is outdated and is not supported. You get the following message if you try to deploy it: 

Inner Errors:
{"code": "AgentPoolK8sVersionNotSupported", "message": "Provisioning of resource(s) for container service aks-66o25hx5ah3mu in resource group rg-bu0001a0008 failed. Message: Version 1.25.2 is not supported in this region. Please use [az aks get-versions] command to get the supported version list in this region. For more information, please check https://aka.ms/supported-version-list. Details: "}

{
      "default": null,
      "isPreview": null,
      "orchestratorType": "Kubernetes",
      "orchestratorVersion": "1.25.5",
      "upgrades": null
    }
  • Loading branch information
oliverlabs authored Feb 9, 2023
1 parent 98e1cd8 commit 9cdd161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster-stamp.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ param clusterAuthorizedIPRanges array = []
'southeastasia'
])
param location string = 'eastus2'
param kubernetesVersion string = '1.25.2'
param kubernetesVersion string = '1.25.5'

@description('Domain name to use for App Gateway and AKS ingress.')
param domainName string = 'contoso.com'
Expand Down

0 comments on commit 9cdd161

Please sign in to comment.