Skip to content

Commit

Permalink
- Changed default OS disk size to 128 GB (to match portal behaviour)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjlewisuk authored Aug 7, 2024
1 parent be265db commit 3b8eb83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@ param osSKU string = 'Ubuntu'
var poolName = osType == 'Linux' ? nodePoolName : take(nodePoolName, 6)

// Default OS Disk Size in GB for Linux is 30, for Windows is 100
var defaultOsDiskSizeGB = osType == 'Linux' ? 30 : 100
var defaultOsDiskSizeGB = 128

module userNodePool '../bicep/aksagentpool.bicep' = if (!JustUseSystemPool){
name: take('${deployment().name}-userNodePool',64)
Expand Down
2 changes: 1 addition & 1 deletion helper/src/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"maxCount": 20,
"computeType": "gp",
"vmSize": "Standard_D4ds_v5",
"osDiskSizeGB": 30,
"osDiskSizeGB": 128,
"osDiskType": "Ephemeral",
"enable_aad": true,
"AksDisableLocalAccounts": false,
Expand Down

0 comments on commit 3b8eb83

Please sign in to comment.