Skip to content

Microsoft AKS Cluster Setup#

This guide covers the prerequisites and cluster creation specific to Azure Kubernetes Service (AKS).

Prerequisites#

  1. Install Azure CLI

  2. Install Helm

Create a Resource Group#

az group create --name flex-resource-group --location eastus

Create the AKS Cluster#

az aks create -g flex-resource-group \
-n flex-cluster \
--enable-managed-identity \
--node-vm-size NODE_TYPE \
--node-count 2 \
--enable-addons monitoring \
--enable-msi-auth-for-monitoring \
--generate-ssh-keys

Adjust node-count and node-vm-size as per your desired cluster size.

Connect to the Cluster#

az aks install-cli
az aks get-credentials \
--resource-group flex-resource-group \
--name flex-cluster

Create the Gluu Namespace#

kubectl create namespace gluu

Next Steps#

Proceed to Ingress Setup to configure traffic routing.