DevOps virtualization
On a machine like ssh.cs.dixie.edu:
az login
az group create --name myResourceGroup --location eastusaz provider register --namespace Microsoft.OperationsManagementaz provider register --namespace Microsoft.OperationalInsightsaz aks create --resource-group myResourceGroup --name myAKSCluster --node-count 1 --generate-ssh-keysaz aks install-cli (may already be installed on ssh)az aks get-credentials --resource-group myResourceGroup --name myAKSClusterkubectl get nodeskubectl create -f sample.ymlkubectl apply -f https://raw.githubusercontent.com/abhirockzz/kubernetes-in-a-nutshell/master/services/loadbalancer/service.yamlkubectl apply -f https://raw.githubusercontent.com/abhirockzz/kubernetes-in-a-nutshell/master/services/app/app.yamlaz group delete --name myResourceGroup --yes --no-wait