Hi I would like to create an aks cluster with the python sdk as in
az aks create --resource-group ${K8S_RESOURCE_GROUP} \
--name ${K8S_CLUSTER_NAME} \
--kubernetes-version 1.19.9 \
--enable-cluster-autoscaler \
--min-count 10 \
--max-count 35 \
--node-count 10 \
--node-vm-size Standard_E2ds_v4 \
--enable-addons monitoring,http_application_routing \
--generate-ssh-keys
It seems that I need to create a service principal with the graphrbac package first. But I don't get it working. For a service principal I need an app id, which I don't have.
Is there an example I can use.
Regards
Bernd