-
Notifications
You must be signed in to change notification settings - Fork 0
aks tutorial kubernetes
git clone https://github.com/Azure-Samples/aks-store-demo.git
Go to Azure , click on icon cloud shell to open Azure cloudshell

Verify you have the Microsoft.OperationsManagement and Microsoft.OperationalInsights providers registered on your subscription.
These Azure resource providers are required to support Container insights. Check the registration status using the following commands:
az provider show -n Microsoft.OperationsManagement -o table
az provider show -n Microsoft.OperationalInsights -o table
az provider register --namespace Microsoft.OperationsManagement
az provider register --namespace Microsoft.OperationalInsights
az login
az group create --name myResourceGroup --location eastus
az aks create -g myResourceGroup -n myAKSCluster --enable-managed-identity --node-count 1 --enable-addons monitoring --enable-msi-auth-for-monitoring --generate-ssh-keys Argument '--enable-msi-auth-for-monitoring' is in preview and under development. Reference and support levels: https://aka.ms/CLI_refstatus
View resources on https://portal.azure.com/
https://learn.microsoft.com/en-us/azure/aks/tutorial-kubernetes-prepare-app
https://learn.microsoft.com/en-us/azure/aks/learn/quick-kubernetes-deploy-cli