From 205d3bf9079cd9d2479c176eb75b1d05e102b922 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Thu, 16 Apr 2015 00:22:39 -0700 Subject: [PATCH 1/2] Add vnet instructions to azure getting started --- docs/getting-started-guides/azure.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/getting-started-guides/azure.md b/docs/getting-started-guides/azure.md index a93d8e27c82..0dc624f5d59 100644 --- a/docs/getting-started-guides/azure.md +++ b/docs/getting-started-guides/azure.md @@ -23,6 +23,10 @@ Next, specify an existing virtual network in `cluster/azure/config-defualt.sh`: AZ_VNET= +You can create a virtual network: + + azure network vnet create --location "West US" -v + Now you're ready. You can then use the `cluster/kube-*.sh` scripts to manage your azure cluster, start with: From 93d76762b732596545db2f6902a965bc8c5f4da9 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Thu, 16 Apr 2015 00:30:10 -0700 Subject: [PATCH 2/2] Update azure.md --- docs/getting-started-guides/azure.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/getting-started-guides/azure.md b/docs/getting-started-guides/azure.md index 0dc624f5d59..ef71f66e204 100644 --- a/docs/getting-started-guides/azure.md +++ b/docs/getting-started-guides/azure.md @@ -19,13 +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= + AZ_SUBNET= You can create a virtual network: - azure network vnet create --location "West US" -v + azure network vnet create --subnet= --location "West US" -v Now you're ready.