Skip to content

Latest commit

 

History

History
69 lines (35 loc) · 754 Bytes

AKS.md

File metadata and controls

69 lines (35 loc) · 754 Bytes

Commands for Learning AKS series Part 4

Azure AKS

Get list of supported Kubernetes versions

az aks get-versions --location "South East Asia" -o table

Provision AKS cluster

initializeAKS.ps1

Get node info

kubectl --namespace aks-part4 get pods

Kubernetes deployment

Deploy TechTalk application

deployTechTalks-AKS.ps1

Describe wefront

kubectl --namespace aks-part4 describe service webfront

Describe api

kubectl --namespace aks-part4 describe service techtalksapi

Describe PV

kubectl --namespace aks-part4 describe pv

Describe PVC

kubectl --namespace aks-part4 describe pvc