Slide 19
Slide 19 text
Using Azure CLI
# Create a resource group
az group create --name thh-demo --location westeurope --tags @{resp="THH"}
# Create a Service Principal
az ad sp create-for-rbac --name thh-demo-aks-sp --skip-assignment
# Will print something like
{
"appId": "7248f250-0000-0000-0000-dbdeb8400d85", # --> identifier ($SP_ID)
"displayName": "thh-demo-aks-sp",
"name": "http://thh-demo-aks-sp",
"password": "77851d2c-0000-0000-0000-cb3ebc97975a", # --> client secret ($SP_PWD)
"tenant": "72f988bf-0000-0000-0000-2d7cd011db47“
}
Prepare a new AKS Cluster
Azure in Action
Pragmatische Cloud-Lösungen mit Containern & Serverless
19