mirror of https://github.com/dapr/docs.git
1.9 KiB
1.9 KiB
Set up an Azure Kubernetes Service cluster
Prerequisites
Deploy an Azure Kubernetes Service cluster
This guide walks you through installing an Azure Kubernetes Service cluster. If you need more information, refer to Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using the Azure CLI
- Login to Azure
az login
- Set the default subscription
az account set -s [your_subscription_id]
- Create a resource group
az group create --name [your_resource_group] --location [region]
- Create an Azure Kubernetes Service cluster
Use 1.13.x or newer version of Kubernetes with
--kubernetes-version
az aks create --resource-group [your_resource_group] --name [your_aks_cluster_name] --node-count 2 --kubernetes-version 1.14.6 --enable-addons http_application_routing --enable-rbac --generate-ssh-keys
- Get the access credentials for the Azure Kubernetes cluster
az aks get-credentials -n [your_aks_cluster_name] -g [your_resource_group]
(optional) Install Helm and deploy Tiller
-
Create the Tiller service account
kubectl apply -f https://raw.githubusercontent.com/Azure/helm-charts/master/docs/prerequisities/helm-rbac-config.yaml
- Run the following to install Tiller into the cluster
helm init --service-account tiller --history-max 200
- Ensure that Tiller is deployed and running
kubectl get pods -n kube-system