Skip to content

Commit cede539

Browse files
Merge pull request #228977 from JAC0BSMITH/patch-2
Aligning prereq steps for CM to be consistent
2 parents 4ce2111 + 6278efc commit cede539

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

articles/operator-nexus/howto-cluster-manager.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,46 @@ This Azure region should be used in the `Location` field of the Cluster Manager
2727

2828
Install latest version of the [appropriate CLI extensions](./howto-install-cli-extensions.md)
2929

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+
3070
## Global arguments
3171

3272
Some arguments that are available for every Azure CLI command

0 commit comments

Comments
 (0)