Kubernates – Cloud Support

Deploy AKS using Azure Cli

1.login to Azure Portal 2. Create resource group using below command az group create –name demo –location eastus 3. Run the below command to create AKS Cluster az aks create –resource-group demo –name democluster –node-count 1 –generate-ssh-keys You can see this on the Azure 4. To connect cluster install Kubectl cli az aks install-cli 5. […]