You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Note: When `az acs create` starts, the provisioning process runs in the background by first creating a service principal and then waiting for AAD role to propagate. After a few minutes the `az` command should return with information about the deployment created as shown below.
73
+
> Note: When `az acs create` starts, the provisioning process runs in the background by first creating a service principal named ${SERVICE_NAME} assigned appropriate permissions. After a few minutes the `az` command should return with information about the deployment created as shown below.
74
74
75
75
```
76
76
{
@@ -116,10 +116,10 @@ When the required information is filled out, click "Ok".
116
116
117
117

118
118
119
-
The next step takes the Service Principal name and password generated using the Azure CLI.
119
+
Create a new service principal via [instructions at this link](https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-authenticate-service-principal-cli#create-service-principal-with-password) and put them into the UI.
120
120
121
-
* Service Principal Client ID: the name of the principal created above e.g. `http://workflow-on-acs`
122
-
* Service Principal Client Secret: the password returned by the Azure CLI e.g. 349d4728-438a-52a5-ad25-a740aa0bd240
121
+
* Service Principal Client ID: the name of the principal created in the example document after the `-n` parameter e.g. `exampleapp`
122
+
* Service Principal Client Secret: the password specified after the `-p` parameter or auto-generated in the Azure CLI e.g. 349d4728-438a-52a5-ad25-a740aa0bd240
123
123
124
124

125
125
@@ -154,7 +154,8 @@ Download the master kubernetes cluster configuration to the ~/.kube/config file
154
154
```console
155
155
az acs kubernetes get-credentials --resource-group=$RG_NAME --name=$SERVICE_NAME
156
156
```
157
-
157
+
> Note: If the cluster was provisioned using any other SSH key than `/root/.ssh/id_rsa` then the `--ssh-key-file` parameter must be used pointing to the SSH key utilized to provision the cluster.
158
+
158
159
Verify connectivity to the new ACS Kubernetes cluster by running `kubectl cluster-info`
0 commit comments