Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ param kubernetesVersion string = '1.32'
var serviceCidr_staging = '10.21.64.0/19'
var dnsServiceIP_staging = '10.21.64.10'

resource aksStaging 'Microsoft.ContainerService/managedClusters@2025-02-01' = {
resource aksStaging 'Microsoft.ContainerService/managedClusters@2025-05-02-preview' = {
location: location
name: aksStagingClusterName
tags: resourceTags
Expand Down Expand Up @@ -106,6 +106,7 @@ resource aksStaging 'Microsoft.ContainerService/managedClusters@2025-02-01' = {
networkPlugin: 'azure'
serviceCidr: serviceCidr_staging
dnsServiceIP: dnsServiceIP_staging
outboundType: 'userAssignedNATGateway'
}
linuxProfile: {
adminUsername: linuxAdminUsername
Expand Down
4 changes: 3 additions & 1 deletion azure_jumpstart_arcbox/bicep/kubernetes/aks.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ var aksSubnetName = '${namingPrefix}-AKS-Subnet'
var drVirtualNetworkName = '${namingPrefix}-DR-VNet'
var drSubnetName = '${namingPrefix}-DR-Subnet'

resource aksClusterName_resource 'Microsoft.ContainerService/managedClusters@2024-09-02-preview' = {
resource aksClusterName_resource 'Microsoft.ContainerService/managedClusters@2025-05-02-preview' = {
location: location
name: aksClusterName
identity: {
Expand Down Expand Up @@ -92,6 +92,7 @@ resource aksClusterName_resource 'Microsoft.ContainerService/managedClusters@202
networkPlugin: 'azure'
serviceCidr: serviceCidr_primary
dnsServiceIP: dnsServiceIP_primary
outboundType: 'userAssignedNATGateway'
}
autoUpgradeProfile: {
nodeOSUpgradeChannel: 'NodeImage'
Expand Down Expand Up @@ -144,6 +145,7 @@ resource drClusterName_resource 'Microsoft.ContainerService/managedClusters@2024
networkPlugin: 'azure'
serviceCidr: serviceCidr_secondary
dnsServiceIP: dnsServiceIP_secondary
outboundType: 'userAssignedNATGateway'
}
linuxProfile: {
adminUsername: linuxAdminUsername
Expand Down
Loading