Azure Kubernetes Engine (AKS)

Installation

To prepare a Kubernetes cluster on Azure with Active Directory follow this guideopen in new window.

Create a Cluster

> az group create \
  --name myResourceGroup \
  --location <region>

> az aks create \
  --resource-group myResourceGroup \
  --name myAKSCluster \
  --generate-ssh-keys \
  --node-count 1 \
  --aad-server-app-id <serverAppId> \
  --aad-server-app-secret <serverAppSecret> \
  --aad-client-app-id <clientAppId> \
  --aad-tenant-id <tenantId>

1
2
3
4
5
6
7
8
9
10
11
12
13
14

TIP

Now you have a working Kubernetes cluster running locally using AKS and have proper authentication using kubectl to connect to the cluster you can proceed to Kubernetic Installation guide.