Merge pull request #6897 from colemickens/patch-2

Add vnet instructions to azure getting started
This commit is contained in:
Robert Bailey 2015-04-16 07:15:34 -07:00
commit 4d3b66c09f

View File

@ -19,9 +19,14 @@ The cluster setup scripts can setup Kubernetes for multiple targets. First modif
KUBERNETES_PROVIDER="azure"
Next, specify an existing virtual network in `cluster/azure/config-defualt.sh`:
Next, specify an existing virtual network and subnet in `cluster/azure/config-defualt.sh`:
AZ_VNET=<vnet name>
AZ_SUBNET=<subnet name>
You can create a virtual network:
azure network vnet create <vnet name> --subnet=<subnet name> --location "West US" -v
Now you're ready.