Create an AKS Cluster

Learn to create Kubernetes clusters using AKS.

We'll cover the following...

Steps to create an AKS cluster

The steps to create an AKS cluster are described below.

Step 1: Export the environment variables

Syntax: export RESOURCE_GROUP=<resource group name>

This captures the specified resource group as a template and saves it to a JSON file.

export CLUSTER_NAME=<cluster_name>

This specifies the cluster name created.

Step 2:

...