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
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,46 @@ This Azure region should be used in the `Location` field of the Cluster Manager
27
27
28
28
Install latest version of the [appropriate CLI extensions](./howto-install-cli-extensions.md)
29
29
30
+
### Sign in to your Azure account and select your subscription
31
+
32
+
To begin your configuration, sign in to your Azure account. You can use the following examples to connect:
33
+
34
+
```azurecli
35
+
az login
36
+
```
37
+
38
+
Check the subscriptions for the account.
39
+
40
+
```azurecli
41
+
az account list
42
+
```
43
+
44
+
Select the subscription for which you want to create a Cluster Manager. This subscription will be used across all Operator Nexus resources.
45
+
46
+
```azurecli
47
+
az account set --subscription "<subscription ID>"
48
+
```
49
+
50
+
## Register providers for Network Cloud
51
+
52
+
You can skip this step if your subscription is already registered with the Microsoft.NetworkCloud Resource Provider. Otherwise, proceed with the following steps:
53
+
54
+
In Azure CLI, enter the following commands:
55
+
56
+
```azurecli
57
+
az provider register --namespace Microsoft.NetworkCloud
58
+
```
59
+
60
+
Monitor the registration process. Registration may take up to 10 minutes.
61
+
62
+
```azurecli
63
+
az provider show -n Microsoft.NetworkCloud -o table
64
+
```
65
+
66
+
Once registered, you should see the RegistrationState state for the namespace change to Registered.
67
+
68
+
If you've already registered, you can verify using the `show` command.
69
+
30
70
## Global arguments
31
71
32
72
Some arguments that are available for every Azure CLI command
0 commit comments