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
Copy file name to clipboardExpand all lines: articles/operator-nexus/howto-cluster-manager.md
+20-80Lines changed: 20 additions & 80 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ Parameters:
123
123
-`-ManagedResourceGroupConfigurationName` - The name for the managed resource group. If not specified, the unique name is automatically generated.
124
124
-`-Tag` - Hashtable of Resource tags.
125
125
126
-
### Create a Cluster Manager via ARM Template
126
+
### [ARM Template](#tab/template)
127
127
128
128
To create a Cluster Manager via ARM Template, you need to provide a template file (clusterManager.jsonc) and a parameter file (clusterManager.parameters.jsonc).
129
129
@@ -196,6 +196,10 @@ This command shows the properties of the specified Cluster Manager in Json forma
Alternatively, you can update Cluster Manager Identities Azure APIs.
290
-
291
-
- To remove all managed identities, execute:
292
-
293
-
```azurecli
294
-
az rest --method PATCH --url /subscriptions/$SUB_ID/resourceGroups/$CLUSTER_MANAGER_RG/providers/Microsoft.NetworkCloud/clusterManagers/$CLUSTER_MANAGER_NAME?api-version=<APIVersion> --body "{\"identity\":{\"type\":\"None\"}}"
295
-
```
296
-
297
-
- If both User-assigned and System-assigned managed identities were added, the User-assigned can be removed by updating the `type` to `SystemAssigned`:
298
-
299
-
```azurecli
300
-
az rest --method PATCH --url /subscriptions/$SUB_ID/resourceGroups/$CLUSTER_MANAGER_RG/providers/Microsoft.NetworkCloud/clusterManagers/$CLUSTER_MANAGER_NAME?api-version=<APIVersion> --body @~/uai-body.json
301
-
```
302
-
303
-
The request body (uai-body.json) example:
304
-
305
-
```azurecli
306
-
{
307
-
"identity": {
308
-
"type": "SystemAssigned"
309
-
}
310
-
}
311
-
```
312
-
313
-
- If both User-assigned and System-assigned managed identities were added, the System-assigned can be removed by updating the `type` to `UserAssigned`:
314
-
315
-
```azurecli
316
-
az rest --method PATCH --url /subscriptions/$SUB_ID/resourceGroups/$CLUSTER_MANAGER_RG/providers/Microsoft.NetworkCloud/clusterManagers/$CLUSTER_MANAGER_NAME?api-version=<APIVersion> --body @~/uai-body.json
0 commit comments