ID
idanshahar/AKS-Meetup
Azure Managed Kubernetes Service & ACR demo
AKS & ACR Meetup
Presentation
Prerequisites
- Azure CLI - Installation Instructions
- kubectl - Installation Instructions
- Docker - Installation Instructions
- Docker Compose - Installation Instructions
AKS
Create an AKS Cluster
# create a resource group
az group create --name ${RESOURCE_GROUP_NAME} -l ${REGION}
# deploy an AKS cluster
az aks create --name ${CLUSTER_NAME} -g ${RESOURCE_GROUP}
Upgrade an AKS Cluster
az aks upgrade -n ${CLUSTER_NAME} -g ${RESOURCE_GROUP} -k 1.8.2
Scale an AKS Cluster
az aks scale -n myawesomeaks -g ${CLUSTER_NAME} -c ${NUMBER_OF_NODES}
ACR
Create an ACR
# create an ACR
az acr create -g ${ACR_RESOURCE_GROUP} -n ${ACR_NAME} --sku Premium
# login to ACR
az acr login --name ${ACR_NAME}
On this page
Languages
Python43.1%CSS31.1%HTML19.6%Shell6.2%
Created February 17, 2018
Updated February 17, 2018
