Node Optimisation Setup for AKS
Learn how to add credentials for node optimization to Sedai.
Step 1: Create Azure Active Directory Group
az ad group create --display-name AKSGroup --mail-nickname AKSGroupaz ad group show --group AKSGroup --query id -o tsvaz group create --name AKS --location southindiaStep 2: Enable access for AD Group Users
az aks create --resource-group AKS \
--name AKSCluster \
--enable-aad \
--aad-admin-group-object-ids <object-id> \
--node-vm-size Standard_D2--node-count 1Step 3: Create a Custom role
Step 4: Provide the required access to AD Group
Step 5: Create app registration and client secret
Step 6: Link app with AD Group
Last updated
Was this helpful?

