This project uses github workflow to build & push python webapp docker image to ACR and then deploys on AKS Cluster
az login
az group create --name githubActions --location centralindia
az acr create --resource-group githubActions --name <AcrName> --sku Basic
az ad sp create-for-rbac --name "GitHub-Actions" --role contributor --scopes /subscriptions/<subscriptionId> --sdk-auth
az role assignment create --assignee <ClientId> --scope /subscriptions/<subscriptionId>/resourceGroups/githubActions/providers/Microsoft.ContainerRegistry/registries/<ACRegistryId> --role AcrPush
az aks create --resource-group githubActions --name myaksCluster --node-count 1 --generate-ssh-keys --attach-acr <AcrName>
az group delete --name githubActions