Skip to content

Commit 22e8506

Browse files
Merge pull request #232129 from JAC0BSMITH/patch-1
Fix rack count references
2 parents 61bf436 + 5794def commit 22e8506

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/operator-nexus/howto-configure-network-fabric.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: surajmb #Required
55
ms.author: surmb #Required
66
ms.service: azure #Required
77
ms.topic: how-to #Required; leave this attribute/value as-is.
8-
ms.date: 03/23/2023 #Required; mm/dd/yyyy format.
8+
ms.date: 03/26/2023 #Required; mm/dd/yyyy format.
99
ms.custom: template-how-to #Required; leave this attribute/value as-is.
1010
---
1111

@@ -32,7 +32,7 @@ This article describes how to create a Network Fabric by using the Azure Command
3232
| resource-name | Name of the FabricResource | NF-Lab1 |True | String |
3333
| nf-sku |Fabric SKU ID, based on the ordered SKU of the BoM. Contact AFO team for specific SKU value for the BoM | M8-A400-A100-C16-aa |True | String|
3434
| nfc-id |Network Fabric Controller ARM resource ID| |True | String |
35-
| rack-count |Total number of aggregation and compute racks | 9 |True | Integer |
35+
| rack-count |Total number of compute racks | 8 |True | Integer |
3636
| server-count-per-rack |Total number of worker nodes per rack| 16 |True | Integer |
3737
||
3838
|**managed-network-config**| Details of management network ||True ||
@@ -86,8 +86,8 @@ az nf fabric create \
8686
--fabric-asn 65014 \
8787
--ipv4-prefix 10.x.0.0/19 \
8888
--ipv6-prefix fda0:d59c:da05::/59 \
89-
--rack-count 5 \
90-
--server-count-per-rack 8 \
89+
--rack-count 8 \
90+
--server-count-per-rack 16 \
9191
--ts-config '{"primaryIpv4Prefix":"20.x.0.5/30","secondaryIpv4Prefix": "20.x.1.6/30","username":"*****", "password": "************", "serialNumber":"************"}' \
9292
--managed-network-config '{"infrastructureVpnConfiguration":{"peeringOption":"OptionB","optionBProperties":{"importRouteTargets":["65014:10039"],"exportRouteTargets":["65014:10039"]}}, "workloadVpnConfiguration":{"peeringOption": "OptionB", "optionBProperties": {"importRouteTargets": ["65014:10050"], "exportRouteTargets": ["65014:10050"]}}}'
9393
```
@@ -139,11 +139,11 @@ Expected output:
139139
"networkFabricSku": "NFSKU",
140140
"operationalState": null,
141141
"provisioningState": "Accepted",
142-
"rackCount": 5,
142+
"rackCount": 8,
143143
"racks": null,
144144
"resourceGroup": "NFResourceGroup",
145145
"routerId": null,
146-
"serverCountPerRack": 8,
146+
"serverCountPerRack": 16,
147147
"systemData": {
148148
"createdAt": "2023-03-10T11:06:33.818069+00:00",
149149
"createdBy": "[email protected]",
@@ -220,11 +220,11 @@ Expected output:
220220
"networkFabricSku": "NFSKU",
221221
"operationalState": null,
222222
"provisioningState": "Succeeded",
223-
"rackCount": 5,
223+
"rackCount": 8,
224224
"racks": null,
225225
"resourceGroup": "NFResourceGroup",
226226
"routerId": null,
227-
"serverCountPerRack": 8,
227+
"serverCountPerRack": 16,
228228
"systemData": {
229229
"createdAt": "2023-03-10T11:06:33.818069+00:00",
230230
"createdBy": "[email protected]",

0 commit comments

Comments
 (0)