Skip to content

Commit

Permalink
Address PR Feedback: bug fix - managedClusters doesn't support availa…
Browse files Browse the repository at this point in the history
…bility zones
  • Loading branch information
ferantivero committed Oct 20, 2022
1 parent b275ce5 commit 39c735f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions cluster-stamp.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ resource mc 'Microsoft.ContainerService/managedClusters@2021-05-01' = {
orchestratorVersion: kubernetesVersion
enableNodePublicIP: false
maxPods: 30
availabilityZones: pickZones('Microsoft.ContainerService', 'managedClusters', location, 3)
availabilityZones: pickZones('Microsoft.Compute', 'virtualMachineScaleSets', location, 3)
upgradeSettings: {
maxSurge: '33%'
}
Expand Down Expand Up @@ -1379,7 +1379,7 @@ resource mc 'Microsoft.ContainerService/managedClusters@2021-05-01' = {
orchestratorVersion: kubernetesVersion
enableNodePublicIP: false
maxPods: 30
availabilityZones: pickZones('Microsoft.ContainerService', 'managedClusters', location, 3)
availabilityZones: pickZones('Microsoft.Compute', 'virtualMachineScaleSets', location, 3)
upgradeSettings: {
maxSurge: '33%'
}
Expand Down Expand Up @@ -1411,7 +1411,7 @@ resource mc 'Microsoft.ContainerService/managedClusters@2021-05-01' = {
orchestratorVersion: kubernetesVersion
enableNodePublicIP: false
maxPods: 30
availabilityZones: pickZones('Microsoft.ContainerService', 'managedClusters', location, 3)
availabilityZones: pickZones('Microsoft.Compute', 'virtualMachineScaleSets', location, 3)
upgradeSettings: {
maxSurge: '33%'
}
Expand Down
6 changes: 3 additions & 3 deletions cluster-stamp.v2.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ resource mc 'Microsoft.ContainerService/managedClusters@2021-05-01' = {
orchestratorVersion: kubernetesVersion
enableNodePublicIP: false
maxPods: 30
availabilityZones: pickZones('Microsoft.ContainerService', 'managedClusters', location, 3)
availabilityZones: pickZones('Microsoft.Compute', 'virtualMachineScaleSets', location, 3)
upgradeSettings: {
maxSurge: '33%'
}
Expand Down Expand Up @@ -1379,7 +1379,7 @@ resource mc 'Microsoft.ContainerService/managedClusters@2021-05-01' = {
orchestratorVersion: kubernetesVersion
enableNodePublicIP: false
maxPods: 30
availabilityZones: pickZones('Microsoft.ContainerService', 'managedClusters', location, 3)
availabilityZones: pickZones('Microsoft.Compute', 'virtualMachineScaleSets', location, 3)
upgradeSettings: {
maxSurge: '33%'
}
Expand Down Expand Up @@ -1411,7 +1411,7 @@ resource mc 'Microsoft.ContainerService/managedClusters@2021-05-01' = {
orchestratorVersion: kubernetesVersion
enableNodePublicIP: false
maxPods: 30
availabilityZones: pickZones('Microsoft.ContainerService', 'managedClusters', location, 3)
availabilityZones: pickZones('Microsoft.Compute', 'virtualMachineScaleSets', location, 3)
upgradeSettings: {
maxSurge: '33%'
}
Expand Down

0 comments on commit 39c735f

Please sign in to comment.