From a9b535f3a44da9238dd29cb8dd8a727458534aeb Mon Sep 17 00:00:00 2001 From: khenidak Date: Fri, 30 Sep 2016 08:29:52 +0900 Subject: [PATCH] updated 01-infrastructure.md --- docs/01-infrastructure-azure.md | 16 ++++++++++++++-- docs/01-infrastructure.md | 4 +++- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/docs/01-infrastructure-azure.md b/docs/01-infrastructure-azure.md index 8e31a58..7696fb0 100644 --- a/docs/01-infrastructure-azure.md +++ b/docs/01-infrastructure-azure.md @@ -1,4 +1,16 @@ # Cloud Infrastructure Provisioning - Azure +This lab will walk you through provisioning the compute instances required for running a H/A Kubernetes cluster. A total of 10 virtual machines will be created. + +The guide assumes you'll be creating resources in the `West Us` region as a single Azure Resource Manager resource group. + +After completing this guide you should have the following compute instances: + +##### add screen shot #### + +> All machines and load balancers will be provisioned with fixed private IP addresses to simplify the bootstrap process. + +The control plane machines are only accessible via a jump box (a VM with publically accessable ssh). The workers machines are exposed via external load balancer that carries both an public IP and public addressable dns FQDN. + ## Variables @@ -6,10 +18,10 @@ #change the following values as needed. # dns for jumpbox is .westus.cloudapp.azure.com -jumpboxDnsLabel="the-hardway-way-jumpbox" +jumpboxDnsLabel="the-hard-way-jumpbox" # dns for workers is .westus.cloudapp.azure.com -workersDnsLabel="the-hardway-way" +workersDnsLabel="the-hard-way" #storage account used by jumpbox + controllers + Etcd VMs controlPlaneStorageAccount="thehardwaycsa" diff --git a/docs/01-infrastructure.md b/docs/01-infrastructure.md index bd4ae69..ef465cd 100644 --- a/docs/01-infrastructure.md +++ b/docs/01-infrastructure.md @@ -1,8 +1,10 @@ # Cloud Infrastructure Provisioning -Kubernetes can be installed just about anywhere physical or virtual machines can be run. In this lab we are going to focus on [Google Cloud Platform](https://cloud.google.com/) and [Amazon Web Services](https://aws.amazon.com). +Kubernetes can be installed just about anywhere physical or virtual machines can be run. In this lab we are going to focus on [Google Cloud Platform](https://cloud.google.com/), [Amazon Web Services](https://aws.amazon.com) and [Microsoft Azure](https://azure.microsoft.com). This lab will walk you through provisioning the compute instances required for running a H/A Kubernetes cluster. * [Cloud Infrastructure Provisioning - Google Cloud Platform](01-infrastructure-gcp.md) * [Cloud Infrastructure Provisioning - Amazon Web Services](01-infrastructure-aws.md) +* [Cloud Infrastructure Provisioning - Microsoft Azure](01-infrastructure-azure.md) +