Skip to content

Commit

Permalink
setting osdisk for systempool
Browse files Browse the repository at this point in the history
  • Loading branch information
Gordonby committed Jul 8, 2023
1 parent 9b93627 commit 21b9c0f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,8 @@ var systemPoolPresets = {
maxCount: 3
enableAutoScaling: true
availabilityZones: []
osDiskSizeGB: 32
osDiskType: 'Ephemeral'
}
Standard : {
vmSize: 'Standard_DS2_v2'
Expand All @@ -1144,6 +1146,8 @@ var systemPoolPresets = {
'2'
'3'
]
osDiskSizeGB: 60
osDiskType: 'Ephemeral'
}
HighSpec : {
vmSize: 'Standard_D4s_v3'
Expand All @@ -1156,6 +1160,8 @@ var systemPoolPresets = {
'2'
'3'
]
osDiskSizeGB: 128
osDiskType: 'Ephemeral'
}
}

Expand All @@ -1165,6 +1171,8 @@ var systemPoolBase = {
count: agentCount
mode: 'System'
osType: 'Linux'
osDiskType: osDiskType
osDiskSizeGB: osDiskSizeGB
maxPods: 30
type: 'VirtualMachineScaleSets'
vnetSubnetID: !empty(aksSubnetId) ? aksSubnetId : null
Expand Down

0 comments on commit 21b9c0f

Please sign in to comment.