diff --git a/docs/devops/add-vms-to-swarm.md b/docs/devops/add-vms-to-swarm.md
new file mode 100644
index 0000000..93d0cf3
--- /dev/null
+++ b/docs/devops/add-vms-to-swarm.md
@@ -0,0 +1,8 @@
+---
+title: Adding newly added VMs to Swarm
+---
+
+
+ Adding newly added VMs to Swarm
+
+
\ No newline at end of file
diff --git a/docs/infra/scaling-disk-size.md b/docs/infra/scaling-disk-size.md
new file mode 100644
index 0000000..50b3e61
--- /dev/null
+++ b/docs/infra/scaling-disk-size.md
@@ -0,0 +1,24 @@
+---
+title: Scaling VM Disk Size
+---
+
+
+ Scaling VM Disk Size
+
+
+
+Pre-requisites:
+
+- Ensure you have followed steps from setup document.
+
+Next Steps:
+
+- Go to variables.tf file
+- To update disk size of VM, update the value of variable corresponding to VM Type.
+- For ex. If you want to update VM disk size of all GPU Based Workers, update the value of variable `gpu_disk_size`
+- Run ```terraform plan``` to review changes
+- Run ```terraform apply``` to apply changes
+
+Note:
+
+- You can expect a minimal downtime as during upgradation of VM Disk Size as machine has to be stopped for increasing size and then restarted
\ No newline at end of file
diff --git a/docs/infra/scaling-vm-horizontally.md b/docs/infra/scaling-vm-horizontally.md
new file mode 100644
index 0000000..658afa1
--- /dev/null
+++ b/docs/infra/scaling-vm-horizontally.md
@@ -0,0 +1,20 @@
+---
+title: Scaling VM Horizontally
+---
+
+
+ Scaling VM Horizontally
+
+
+
+Pre-requisites:
+
+- Ensure you have followed steps from setup document.
+
+Next Steps:
+
+- Go to variables.tf file
+- To update the number of VM instances, update the value of variable corresponding to VM Type.
+- For ex. If you want to update the number of GPU Based Instances, update the value of variable `gpu_instance_count`
+- Run ```terraform plan``` to review changes
+- Run ```terraform apply``` to apply changes
\ No newline at end of file
diff --git a/docs/infra/scaling-vm-vertically.md b/docs/infra/scaling-vm-vertically.md
new file mode 100644
index 0000000..09e96b8
--- /dev/null
+++ b/docs/infra/scaling-vm-vertically.md
@@ -0,0 +1,20 @@
+---
+title: Scaling VM Vertically
+---
+
+
+ Scaling VM Vertically
+
+
+
+Pre-requisites:
+
+- Ensure you have followed steps from setup document.
+
+Next Steps:
+
+- Go to variables.tf file
+- To update the instance size of VM instances, update the value of variable corresponding to VM Type.
+- For ex. If you want to update the instance size of GPU Based Instances, update the value of variable `gpu_instance_size`
+- Run ```terraform plan``` to review changes
+- Run ```terraform apply``` to apply changes
\ No newline at end of file
diff --git a/sidebars.js b/sidebars.js
index 5468780..2abbbf5 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -16,7 +16,19 @@ module.exports = {
type: 'category',
label: 'Infra',
collapsed: false,
- items: ['infra/overview', 'infra/setting-up'],
+ items: [
+ 'infra/overview',
+ 'infra/setting-up',
+ 'infra/scaling-disk-size',
+ 'infra/scaling-vm-horizontally',
+ 'infra/scaling-vm-vertically',
+ ],
+ },
+ {
+ type: 'category',
+ label: 'Devops',
+ collapsed: false,
+ items: ['devops/add-vms-to-swarm'],
},
],