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-configure-cluster.md
+55-6Lines changed: 55 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,53 @@ You should create the Network Fabric before this on-premises deployment.
39
39
Each Operator Nexus on-premises instance has a one-to-one association
40
40
with a Network Fabric.
41
41
42
-
### Create the Cluster using Azure CLI:
42
+
> [!IMPORTANT]
43
+
> There's a known issue where updating a cluster immediately after creating it can cause cluster deployment failures. The problem happens when the resource is updated before the bmcConnectionString fields are populated in the `cluster.spec.computeRackDefinitions.bareMetalMachineConfigurationData` section. The bmcConnectionStrings are normally set within a few minutes of creating the Cluster.
44
+
>
45
+
> To avoid this issue, ensure that the bmcConnectionStrings contain nonempty values before updating the Cluster resource via Azure portal or the az networkcloud update command.
46
+
>
47
+
> To confirm the status, open the JSON properties for the Cluster (Operator Nexus) resource in Azure portal, or run an `az networkcloud cluster show` CLI command as shown in the following example. If the bmmConnectionString values show nonempty `redfish+https..` values, then it's safe to update the cluster. This issue will be fixed in a future release.
48
+
>
49
+
> Sample bmcConnectionString output for `az networkcloud cluster show -n cluster01 -g cluster01resourceGroup--query 'computeRackDefinitions[].bareMetalMachineConfigurationData[].bmcConnectionString' -o json` is as follows:
### Create the Cluster using Azure CLI - single storage appliance:
59
+
60
+
>[!IMPORTANT]
61
+
>This command creates the cluster for a Nexus instance that contains a single storage appliance. If you run it against an instance with two storage appliances the second appliance will not be configured. Follow [the instructions for multiple storage appliances](#create-the-cluster-using-azure-cli---multiple-storage-appliances) if your Nexus instance includes two storage appliances.
62
+
63
+
```azurecli
64
+
az networkcloud cluster create --name "<CLUSTER_NAME>" --location "<LOCATION>" \
### Create the Cluster using Azure CLI - multiple storage appliances:
87
+
88
+
"<AGGR_RACK_SKU>" must be set to a value which supports two storage appliances. See [Operator Nexus Network Cloud SKUs](./reference-operator-nexus-skus.md) to pick an appropriate SKU. The cluster creation command also sets the default storage appliance for volume creation. The default appliance is the appliance with `"rackSlot":1` in its configuration data.
43
89
44
90
```azurecli
45
91
az networkcloud cluster create --name "<CLUSTER_NAME>" --location "<LOCATION>" \
| AGGR_RACK_SN | Rack Serial Number for Aggregator Rack |
80
126
| AGGR_RACK_LOCATION | Rack physical location for Aggregator Rack |
81
127
| AGGR_RACK_BMM | Used for single rack deployment only, empty for multi-rack |
82
-
| SA_NAME | Storage Appliance Device name |
83
-
| SA_PASS | Storage Appliance admin password |
128
+
| SA1_NAME | First Storage Appliance Device name |
129
+
| SA2_NAME | Second Storage Appliance Device name |
130
+
| SA1_PASS | First Storage Appliance admin password |
131
+
| SA2_PASS | Second Storage Appliance admin password |
84
132
| SA_USER | Storage Appliance admin user |
85
-
| SA_SN | Storage Appliance Serial Number |
133
+
| SA1_SN | First Storage Appliance Serial Number |
134
+
| SA2_SN | Second Storage Appliance Serial Number |
86
135
| COMPX_RACK_RESOURCE_ID | RackID for CompX Rack; repeat for each rack in compute-rack-definitions |
87
136
| COMPX_RACK_SKU | The Rack Stock Keeping Unit (SKU) for CompX Rack; repeat for each rack in compute-rack-definitions \*See [Operator Nexus Network Cloud Stock Keeping Unit (SKUs)](./reference-operator-nexus-skus.md)|
88
137
| COMPX_RACK_SN | Rack Serial Number for CompX Rack; repeat for each rack in compute-rack-definitions |
0 commit comments