Set up an Azure Kubernetes Service (AKS) cluster

Learn how to set up an Azure Kubernetes Cluster

This guide walks you through installing an Azure Kubernetes Service (AKS) cluster. If you need more information, refer to Quickstart: Deploy an AKS cluster using the Azure CLI

Prerequisites

Deploy an AKS cluster

  1. In the terminal, log into Azure.

    1. az login
  2. Set your default subscription:

    1. az account set -s [your_subscription_id]
  3. Create a resource group.

    1. az group create --name [your_resource_group] --location [region]
  4. Create an AKS cluster. To use a specific version of Kubernetes, use --kubernetes-version (1.13.x or newer version required).

    1. az aks create --resource-group [your_resource_group] --name [your_aks_cluster_name] --node-count 2 --enable-addons http_application_routing --generate-ssh-keys
  5. Get the access credentials for the AKS cluster.

    1. az aks get-credentials -n [your_aks_cluster_name] -g [your_resource_group]

AKS Edge Essentials

To create a single-machine K8s/K3s Linux-only cluster using Azure Kubernetes Service (AKS) Edge Essentials, you can follow the quickstart guide available at AKS Edge Essentials quickstart guide.

Note

AKS Edge Essentials does not come with a default storage class, which may cause issues when deploying Dapr. To avoid this, make sure to enable the local-path-provisioner storage class on the cluster before deploying Dapr. If you need more information, refer to Local Path Provisioner on AKS EE.

Last modified October 12, 2023: Update config.toml (#3826) (0ffc2e7)