From 21b9c0f4b6ee60692a2adb0d688e0878d42c6b49 Mon Sep 17 00:00:00 2001 From: Gordon Byers Date: Sat, 8 Jul 2023 13:04:27 +0100 Subject: [PATCH] setting osdisk for systempool --- bicep/main.bicep | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bicep/main.bicep b/bicep/main.bicep index 6aed3e26e..36be0d7f8 100644 --- a/bicep/main.bicep +++ b/bicep/main.bicep @@ -1132,6 +1132,8 @@ var systemPoolPresets = { maxCount: 3 enableAutoScaling: true availabilityZones: [] + osDiskSizeGB: 32 + osDiskType: 'Ephemeral' } Standard : { vmSize: 'Standard_DS2_v2' @@ -1144,6 +1146,8 @@ var systemPoolPresets = { '2' '3' ] + osDiskSizeGB: 60 + osDiskType: 'Ephemeral' } HighSpec : { vmSize: 'Standard_D4s_v3' @@ -1156,6 +1160,8 @@ var systemPoolPresets = { '2' '3' ] + osDiskSizeGB: 128 + osDiskType: 'Ephemeral' } } @@ -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