Skip to content

idanshahar/AKS-Meetup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AKS & ACR Meetup

Presentation

AKS & ACR

Prerequisites

  1. Azure CLI - Installation Instructions
  2. kubectl - Installation Instructions
  3. Docker - Installation Instructions
  4. 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

asciicast

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}