Skip to content

Commit

Permalink
Merge pull request Azure#4921 from cloudmelon/patch-8
Browse files Browse the repository at this point in the history
Update how to use new feature
  • Loading branch information
bmoore-msft authored Jul 21, 2018
2 parents d38f3a0 + b088b57 commit b16003a
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion 201-vmss-master-slave-customscript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,27 @@
</a>

## Description
This template allows you to deploy a VM Scale Set of Linux VMs and create a new virtual network at the same time. These VMs have a custom script extension for customization and are behind a load balancer with NAT rules for rdp connections. This allows to specify the master node number and data node number, adapt to any master / slave architecture
This template allows you to deploy a VM Scale Set of Linux VMs and create a new virtual network at the same time. These VMs have a custom script extension for customization and are behind a load balancer with NAT rules for SSH connections. This allows to specify the master node number and data node number, adapt to any master / slave architecture

## Using new features

To enable Accelerated Networking feature ( SR-IOV ) which is a free feature, using the following example :

In network profile of VMSS , set "enableAcceleratedNetworking" to true, to have more information, please go to https://docs.microsoft.com/en-us/azure/virtual-network/create-vm-accelerated-networking-cli


If availability zone is available in your region, adding the following in your template to improve the availability of your VMSS :
```
"zones": [
"1",
"2",
"3"
]
}
```


Note that your Load Balancer should be STANDARD tier as well as your public IP ( if you're using it ), check here to know more about it : https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-standard-availability-zones

More information at https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-use-availability-zones

0 comments on commit b16003a

Please sign in to comment.