зеркало из https://github.com/Azure/ARO-RP.git
Increase RP and VMSS disk size from 256GB to 1024GB (#3731)
To ensure that the vmss instances do not become unavalaible due to storage usage.
This commit is contained in:
Родитель
db4508d6f9
Коммит
2808298ec8
|
@ -235,7 +235,7 @@
|
|||
},
|
||||
"osDisk": {
|
||||
"createOption": "FromImage",
|
||||
"diskSizeGB": 256,
|
||||
"diskSizeGB": 1024,
|
||||
"managedDisk": {
|
||||
"storageAccountType": "Premium_LRS"
|
||||
}
|
||||
|
|
|
@ -385,7 +385,7 @@
|
|||
},
|
||||
"osDisk": {
|
||||
"createOption": "FromImage",
|
||||
"diskSizeGB": 256,
|
||||
"diskSizeGB": 1024,
|
||||
"managedDisk": {
|
||||
"storageAccountType": "Premium_LRS"
|
||||
}
|
||||
|
|
|
@ -287,7 +287,7 @@ func (g *generator) gatewayVMSS() *arm.Resource {
|
|||
ManagedDisk: &mgmtcompute.VirtualMachineScaleSetManagedDiskParameters{
|
||||
StorageAccountType: mgmtcompute.StorageAccountTypesPremiumLRS,
|
||||
},
|
||||
DiskSizeGB: to.Int32Ptr(256),
|
||||
DiskSizeGB: to.Int32Ptr(1024),
|
||||
},
|
||||
},
|
||||
NetworkProfile: &mgmtcompute.VirtualMachineScaleSetNetworkProfile{
|
||||
|
|
|
@ -487,7 +487,7 @@ func (g *generator) rpVMSS() *arm.Resource {
|
|||
ManagedDisk: &mgmtcompute.VirtualMachineScaleSetManagedDiskParameters{
|
||||
StorageAccountType: mgmtcompute.StorageAccountTypesPremiumLRS,
|
||||
},
|
||||
DiskSizeGB: to.Int32Ptr(256),
|
||||
DiskSizeGB: to.Int32Ptr(1024),
|
||||
},
|
||||
},
|
||||
NetworkProfile: &mgmtcompute.VirtualMachineScaleSetNetworkProfile{
|
||||
|
|
Загрузка…
Ссылка в новой задаче