2015-07-12 04:04:52 +00:00
<!-- BEGIN MUNGE: UNVERSIONED_WARNING -->
<!-- BEGIN STRIP_FOR_RELEASE -->
2015-07-16 17:02:26 +00:00
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< img src = "http://kubernetes.io/img/warning.png" alt = "WARNING"
width="25" height="25">
< h2 > PLEASE NOTE: This document applies to the HEAD of the source tree< / h2 >
If you are using a released version of Kubernetes, you should
refer to the docs that go with that version.
< strong >
The latest 1.0.x release of this document can be found
[here ](http://releases.k8s.io/release-1.0/docs/getting-started-guides/azure.md ).
Documentation for other releases can be found at
[releases.k8s.io ](http://releases.k8s.io ).
< / strong >
--
2015-07-13 22:15:35 +00:00
2015-07-12 04:04:52 +00:00
<!-- END STRIP_FOR_RELEASE -->
<!-- END MUNGE: UNVERSIONED_WARNING -->
2015-06-22 19:39:35 +00:00
Getting started on Microsoft Azure
----------------------------------
2014-08-27 18:55:41 +00:00
2015-06-22 19:39:35 +00:00
**Table of Contents**
2015-06-22 18:56:19 +00:00
2015-07-19 05:18:55 +00:00
- [Prerequisites ](#prerequisites )
- [Setup ](#setup )
- [Getting started with your cluster ](#getting-started-with-your-cluster )
- [Tearing down the cluster ](#tearing-down-the-cluster )
2015-06-22 18:56:19 +00:00
2015-06-22 19:39:35 +00:00
## Prerequisites
2015-09-09 08:53:32 +00:00
**Azure Prerequisites**
2014-08-27 18:55:41 +00:00
1. You need an Azure account. Visit http://azure.microsoft.com/ to get started.
2. Install and configure the Azure cross-platform command-line interface. http://azure.microsoft.com/en-us/documentation/articles/xplat-cli/
3. Make sure you have a default account set in the Azure cli, using `azure account set`
2015-06-22 19:39:35 +00:00
**Prerequisites for your workstation**
2014-11-18 22:23:03 +00:00
1. Be running a Linux or Mac OS X.
2014-11-21 00:40:35 +00:00
2. Get or build a [binary release ](binary_release.md )
3. If you want to build your own release, you need to have [Docker
2014-11-18 22:23:03 +00:00
installed](https://docs.docker.com/installation/). On Mac OS X you can use
2015-01-11 17:46:41 +00:00
[boot2docker ](http://boot2docker.io/ ).
2014-08-27 18:55:41 +00:00
2015-06-22 18:56:19 +00:00
## Setup
2015-07-17 22:35:41 +00:00
### Starting a cluster
2014-08-27 18:55:41 +00:00
The cluster setup scripts can setup Kubernetes for multiple targets. First modify `cluster/kube-env.sh` to specify azure:
KUBERNETES_PROVIDER="azure"
2015-04-16 18:39:40 +00:00
Next, specify an existing virtual network and subnet in `cluster/azure/config-default.sh` :
2014-09-04 11:36:01 +00:00
AZ_VNET=< vnet name >
2015-04-16 07:30:10 +00:00
AZ_SUBNET=< subnet name >
2014-09-18 17:57:39 +00:00
2015-04-16 07:22:39 +00:00
You can create a virtual network:
2015-07-11 02:22:34 +00:00
azure network vnet create < vnet name > --subnet-name=< subnet name > --location "West US" -v
2015-04-16 07:22:39 +00:00
2014-09-04 11:36:01 +00:00
Now you're ready.
2015-09-03 14:10:11 +00:00
You can download and install the latest Kubernetes release from [this page ](https://github.com/kubernetes/kubernetes/releases ), then run the `<kubernetes>/cluster/kube-up.sh` script to start the cluster:
2014-08-27 18:55:41 +00:00
2015-07-14 23:16:50 +00:00
cd kubernetes
2014-08-27 18:55:41 +00:00
cluster/kube-up.sh
2014-11-18 22:23:03 +00:00
The script above will start (by default) a single master VM along with 4 worker VMs. You
can tweak some of these parameters by editing `cluster/azure/config-default.sh` .
2014-08-27 18:55:41 +00:00
2015-07-20 20:45:36 +00:00
### Adding the Kubernetes command line tools to PATH
2015-07-17 22:35:41 +00:00
2015-07-14 23:16:50 +00:00
The [kubectl ](../../docs/user-guide/kubectl/kubectl.md ) tool controls the Kubernetes cluster manager. It lets you inspect your cluster resources, create, delete, and update components, and much more.
You will use it to look at your new cluster and bring up example apps.
2015-07-19 05:58:13 +00:00
Add the appropriate binary folder to your `PATH` to access kubectl:
2015-07-14 23:16:50 +00:00
# OS X
export PATH=< path / to / kubernetes-directory > /platforms/darwin/amd64:$PATH
# Linux
export PATH=< path / to / kubernetes-directory > /platforms/linux/amd64:$PATH
2015-06-22 18:56:19 +00:00
## Getting started with your cluster
2015-07-17 22:35:41 +00:00
2015-07-14 16:37:37 +00:00
See [a simple nginx example ](../user-guide/simple-nginx.md ) to try out your new cluster.
2014-08-27 18:55:41 +00:00
2015-07-10 01:02:10 +00:00
For more complete applications, please look in the [examples directory ](../../examples/ ).
2014-08-27 18:55:41 +00:00
2015-06-22 18:56:19 +00:00
## Tearing down the cluster
2015-07-17 02:01:02 +00:00
2015-07-19 02:23:29 +00:00
```sh
2014-08-27 18:55:41 +00:00
cluster/kube-down.sh
```
2015-05-14 22:12:45 +00:00
2015-07-14 00:13:09 +00:00
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
2015-05-14 22:12:45 +00:00
[![Analytics ](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/getting-started-guides/azure.md?pixel )]()
2015-07-14 00:13:09 +00:00
<!-- END MUNGE: GENERATED_ANALYTICS -->