Created
June 24, 2023 17:03
-
-
Save sumansrivastava/db4e76b9d01d794d56a98ce5a7c31226 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Log in to Azure | |
| az login | |
| # Create a resource group | |
| az group create --name myResourceGroup --location eastus | |
| # Create an AKS cluster | |
| az aks create --resource-group myResourceGroup --name myAKSCluster --node-count 2 --node-vm-size Standard_D2s_v3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment