# aks cli
# az cli
# get list of clusters in sub
az aks list -o table
# get credentials
az aks get-credentials -n <yourClusterName> -g <yourResourceGroupName>
# view aks info
az aks show --name <CLUSTER_NAME> --resource-group <RGNAME> --output table
# Networking
- Two options: Basic (kubenet cni) and Advanced (azure cni).
- By default, AKS clusters have unrestricted outbound (egress) internet access.
← azure logs docker →