From 6ec245ad8eef6a69875a73df3ffa9290d0ff0b94 Mon Sep 17 00:00:00 2001
From: Jason Poon <git@jasonpoon.ca>
Date: Wed, 5 Oct 2016 12:55:50 -0700
Subject: [PATCH] updating sizes

---
 docs/01-infrastructure-azure.md  | 19 ++++++++++---------
 docs/02-certificate-authority.md |  9 +++------
 docs/09-smoke-test.md            |  5 +----
 3 files changed, 14 insertions(+), 19 deletions(-)

diff --git a/docs/01-infrastructure-azure.md b/docs/01-infrastructure-azure.md
index 626bce7..f5b614f 100644
--- a/docs/01-infrastructure-azure.md
+++ b/docs/01-infrastructure-azure.md
@@ -650,16 +650,16 @@ info:    Executing command vm list
 + Getting virtual machines                                                     
 data:    ResourceGroupName  Name          ProvisioningState  PowerState  Location  Size       
 data:    -----------------  ------------  -----------------  ----------  --------  -----------
-data:    the-hard-way       controller-0  Succeeded          VM running  westus    Standard_D4
-data:    the-hard-way       controller-1  Succeeded          VM running  westus    Standard_D4
-data:    the-hard-way       controller-2  Succeeded          VM running  westus    Standard_D4
-data:    the-hard-way       etcd-0        Succeeded          VM running  westus    Standard_D4
-data:    the-hard-way       etcd-1        Succeeded          VM running  westus    Standard_D4
-data:    the-hard-way       etcd-2        Succeeded          VM running  westus    Standard_D4
+data:    the-hard-way       controller-0  Succeeded          VM running  westus    Standard_A1
+data:    the-hard-way       controller-1  Succeeded          VM running  westus    Standard_A1
+data:    the-hard-way       controller-2  Succeeded          VM running  westus    Standard_A1
+data:    the-hard-way       etcd-0        Succeeded          VM running  westus    Standard_A1
+data:    the-hard-way       etcd-1        Succeeded          VM running  westus    Standard_A1
+data:    the-hard-way       etcd-2        Succeeded          VM running  westus    Standard_A1
 data:    the-hard-way       jumpbox       Succeeded          VM running  westus    Standard_A1
-data:    the-hard-way       worker-0      Succeeded          VM running  westus    Standard_D4
-data:    the-hard-way       worker-1      Succeeded          VM running  westus    Standard_D4
-data:    the-hard-way       worker-2      Succeeded          VM running  westus    Standard_D4
+data:    the-hard-way       worker-0      Succeeded          VM running  westus    Standard_A1
+data:    the-hard-way       worker-1      Succeeded          VM running  westus    Standard_A1
+data:    the-hard-way       worker-2      Succeeded          VM running  westus    Standard_A1
 info:    vm list command OK
 ```
 
@@ -691,6 +691,7 @@ ssh -i ./cluster \
 	thehardway@10.240.0.31  
 
 #or
+
 ssh -i ./cluster \
 	thehardway@controller-1  
 
diff --git a/docs/02-certificate-authority.md b/docs/02-certificate-authority.md
index 50b5884..aec32f4 100644
--- a/docs/02-certificate-authority.md
+++ b/docs/02-certificate-authority.md
@@ -139,7 +139,7 @@ KUBERNETES_PUBLIC_ADDRESS=$(aws elb describe-load-balancers \
 
 #### Azure
 
-this gets the address of the internal controllers load balancer
+This retrieves the address of the *internal* controllers load balancer.
 
 ```
 KUBERNETES_PUBLIC_ADDRESS=$(azure network lb show \
@@ -257,7 +257,7 @@ done
 
 ### Azure
 
-If you are using the jumpbox to create the certificates
+If you were on the jumpbox create the certificates:
 
 ```
 for host in ${KUBERNETES_HOSTS[*]}; do
@@ -266,19 +266,16 @@ for host in ${KUBERNETES_HOSTS[*]}; do
 done
 ```
 
-If you used a different machine
+If you used a different machine:
 
 ```
-
 # Get jumpbox address
-
 KUBERNETES_JUMPBOX_ADDRESS=$(azure network public-ip show \
   --resource-group the-hard-way \
   --name the-hard-way-jumpbox \
   --json | jq -r '.dnsSettings.fqdn')
 
 # Copy files to jumpbox 
-
 scp -i ./keys/cluster \
   ca.pem \
   kubernetes-key.pem \
diff --git a/docs/09-smoke-test.md b/docs/09-smoke-test.md
index 7d90d1f..0d50621 100644
--- a/docs/09-smoke-test.md
+++ b/docs/09-smoke-test.md
@@ -83,28 +83,25 @@ NODE_PUBLIC_IP=$(aws ec2 describe-instances \
 
 ```
 # Get the fqdn for the public worker ingestion load balancer
-
 NODE_PUBLIC_IP=$(azure network public-ip show \
   --resource-group the-hard-way \
   --name the-hard-way-workers \
   --json | jq -r '.dnsSettings.fqdn')
 
 # Add NSG rule to enable traffic to workers' node ports
-
 azure network nsg rule create \
 	--resource-group the-hard-way \
 	--nsg-name the-hard-way-nsg \
 	--name allow-internet-$NODE_PORT \
 	--protocol tcp \
 	--access allow  \
-  --source-address-prefix Internet \
+	--source-address-prefix Internet \
 	--destination-address-prefix 10.240.0.0/16 \
 	--destination-port-range $NODE_PORT \
 	--priority 110 \
 	--direction inbound
 
 # Create load balancer rule NODE_PORT:NODE_PORT on the load balancer
-
 azure network lb probe create \
   --resource-group the-hard-way \
   --lb-name the-hard-way-lb \