From fe6be3b4511efc113111ffa5b8202df863345c65 Mon Sep 17 00:00:00 2001 From: Jerry Morey Date: Tue, 13 Dec 2022 14:54:16 -0500 Subject: [PATCH] make RBH disk configurable large FS needs a larger disk to handle the DB and logs --- azuredeploy_template.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/azuredeploy_template.json b/azuredeploy_template.json index 9aaa3bc..2cd7101 100644 --- a/azuredeploy_template.json +++ b/azuredeploy_template.json @@ -168,6 +168,13 @@ "description": "The VM type for running Robinhood." } }, + "rbhDiskSize": { + "defaultValue": 64, + "type": "Int", + "metadata": { + "description": "The Robinhood VM OS Disk Size (in GiB)" + } + }, "useAvailabilityZone": { "defaultValue": false, "type": "Bool", @@ -366,7 +373,8 @@ "imageReference": "[variables('imageReference')]", "osDisk": { "createOption": "FromImage", - "caching": "ReadWrite" + "caching": "ReadWrite", + "diskSizeGB": "[parameters('rbhDiskSize')]" } }, "networkProfile": {