-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All steps translated and tested from gcp to Azure
- Loading branch information
1 parent
4ca7c45
commit 538bb81
Showing
15 changed files
with
519 additions
and
486 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,33 @@ | ||
# Prerequisites | ||
|
||
## Google Cloud Platform | ||
## Microsoft Azure | ||
|
||
This tutorial leverages the [Google Cloud Platform](https://cloud.google.com/) to streamline provisioning of the compute infrastructure required to bootstrap a Kubernetes cluster from the ground up. [Sign up](https://cloud.google.com/free/) for $300 in free credits. | ||
This tutorial leverages the [Microsoft Azure](https://azure.microsoft.com) to streamline provisioning of the compute infrastructure required to bootstrap a Kubernetes cluster from the ground up. [Sign up](https://azure.microsoft.com/en-us/free/) for $200 in free credits. | ||
|
||
[Estimated cost](https://cloud.google.com/products/calculator/#id=78df6ced-9c50-48f8-a670-bc5003f2ddaa) to run this tutorial: $0.22 per hour ($5.39 per day). | ||
[Estimated cost](https://azure.microsoft.com/en-us/pricing/calculator/) to run this tutorial: $0.4 per hour ($10 per day). | ||
|
||
> The compute resources required for this tutorial exceed the Google Cloud Platform free tier. | ||
> The compute resources required for this tutorial will not exceed the Microsoft Azure free tier. | ||
## Google Cloud Platform SDK | ||
## Microsoft Azure Cloud Platform SDK | ||
|
||
### Install the Google Cloud SDK | ||
### Install the Microsoft Azure CLI 2.0 | ||
|
||
Follow the Google Cloud SDK [documentation](https://cloud.google.com/sdk/) to install and configure the `gcloud` command line utility. | ||
Follow the Microsoft Azure CLI 2.0 [documentation](https://github.com/azure/azure-cli#installation) to install and configure the `az` command line utility. | ||
|
||
Verify the Google Cloud SDK version is 169.0.0 or higher: | ||
Verify the Microsoft Azure CLI 2.0 version is 2.0.14 or higher: | ||
|
||
```shell | ||
az --version | ||
``` | ||
gcloud version | ||
``` | ||
|
||
### Set a Default Compute Region and Zone | ||
|
||
This tutorial assumes a default compute region and zone have been configured. | ||
### Create a default Resource Group in a location | ||
|
||
Set a default compute region: | ||
The guide assumes you've installed the [Azure CLI 2.0](https://github.com/azure/azure-cli#installation), and will be creating resources in the `westus2` location, within a resource group named `kubernetes`. To create this resource group, simply run the following command: | ||
|
||
``` | ||
gcloud config set compute/region us-west1 | ||
``` | ||
|
||
Set a default compute zone: | ||
|
||
``` | ||
gcloud config set compute/zone us-west1-c | ||
```shell | ||
az group create -n kubernetes -l westus2 | ||
``` | ||
|
||
> Use the `gcloud compute zones list` command to view additional regions and zones. | ||
> Use the `az account list-locations` command to view additional locations. | ||
Next: [Installing the Client Tools](02-client-tools.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.