I'm having a problem going through the step in the Quickstart for Azure Kubernetes cluster for Linux.
The following command creates a resource group successfully: $> az group create --name myResourceGroup --location eastus
However, I get an error when trying to create the Kubernetes cluster: $> az aks create --resource-group myResourceGroup --name myK8sCluster --node-count 1 --generate-ssh-keys
The error returned is:
"Operation failed with status: 'Bad Request'. Details: Service principal clientID: b986e403-1baa-4e97-8fea-e0a411516c61 not found in Active Directory tenant fee04516-9fb0-4e3e-a906-0b8d8bb493d6, Please see https://aka.ms/acs-sp-help for more details".
Any thoughts on what the problem is?
Thanks, Cameron.