diff --git a/docs/installation.md b/docs/installation.md index 1b4c96e0b..3113d0e60 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -69,7 +69,6 @@ export SUBSCRIPTION=$(az account show --query id -o tsv) export IDENTITY_NAME="kaitoprovisioner" az identity create --name $IDENTITY_NAME -g $RESOURCE_GROUP export IDENTITY_PRINCIPAL_ID=$(az identity show --name $IDENTITY_NAME -g $RESOURCE_GROUP --subscription $SUBSCRIPTION --query 'principalId' -o tsv) -export IDENTITY_CLIENT_ID=$(az identity show --name $IDENTITY_NAME -g $RESOURCE_GROUP --subscription $SUBSCRIPTION --query 'clientId' -o tsv) az role assignment create --assignee $IDENTITY_PRINCIPAL_ID --scope /subscriptions/$SUBSCRIPTION/resourceGroups/$RESOURCE_GROUP/providers/Microsoft.ContainerService/managedClusters/$MY_CLUSTER --role "Contributor" ```