AKS Cluster Setup
K8s Installation
RESOURCE_GROUP_NAME=myResourceGroup-NP
CLUSTER_NAME=myAKSCluster
LOCATION=eastusaz group create --name $RESOURCE_GROUP_NAME --location $LOCATIONaz network vnet create \
--resource-group $RESOURCE_GROUP_NAME \
--name myVnet \
--address-prefixes 10.0.0.0/8 \
--subnet-name myAKSSubnet \
--subnet-prefix 10.240.0.0/16SP=$(az ad sp create-for-rbac --output json)SP_ID=$(echo $SP | jq -r .appId)SP_PASSWORD=$(echo $SP | jq -r .password)echo $SP_PASSWORDGet the Kube Config file from Azure Shell to Windows Computer.
Last updated