diff --git a/docs/devops/add-vms-to-swarm.md b/docs/devops/add-vms-to-swarm.md
new file mode 100644
index 0000000..eb5564a
--- /dev/null
+++ b/docs/devops/add-vms-to-swarm.md
@@ -0,0 +1,21 @@
+---
+title: Adding newly added VMs to Swarm
+---
+
+
+ Adding newly added VMs to Swarm
+
+
+
+Pre Requisistes:
+
+- Ensure you have followed steps from setup document.
+
+Next Steps:
+
+- Run the base_setup.yml file by using commnand `ansible-playbook base_setup.yml -i azure_rm.yml`
+
+Verification:
+
+- SSH into manager node
+- Run `docker node ls` and verify if the node is successfully added
\ No newline at end of file
diff --git a/docs/devops/setup.md b/docs/devops/setup.md
new file mode 100644
index 0000000..28e09e4
--- /dev/null
+++ b/docs/devops/setup.md
@@ -0,0 +1,18 @@
+---
+title: Setup
+---
+
+
+ Setup
+
+
+
+Pre Requisistes:
+
+- Install Ansible
+- Add vault token to environment. ANSIBLE_HASHI_VAULT_TOKEN
+
+
+
+
+
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/sidebars.js b/sidebars.js
index 5468780..aea4ea1 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -16,7 +16,13 @@ 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'],
+ },
+ {
+ type: 'category',
+ label: 'Devops',
+ collapsed: false,
+ items: ['devops/setup', 'devops/add-vms-to-swarm'],
},
],