Skip to content

Commit 36e8905

Browse files
authored
Update howto-upgrade-nexus-fabric-template.md
Updates based on comments and acrolinx
1 parent 23760b8 commit 36e8905

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

articles/operator-nexus/howto-upgrade-nexus-fabric-template.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -303,24 +303,25 @@ Validate the health and status of all the Nexus Instance resources with the [Nex
303303

304304
If not using IRT, perform resource validation of all Nexus Instance components with Azure CLI:
305305
```
306+
# Check `ProvisioningState = Succeeded` in all resources
307+
306308
# NFC
307-
az networkfabric controller list --subscription <CUSTOMER_SUB_ID> -o table
308-
az vm list -o table --query "[?location=='<AZURE_REGION>']" --subscription <CUSTOMER_SUB_ID>
309-
az customlocation list -o table --query "[?location=='<AZURE_REGION>']" | grep <NFC_NAME> --subscription <CUSTOMER_SUB_ID>
309+
az networkfabric controller list -g <NFC_RG> --subscription <CUSTOMER_SUB_ID> -o table
310+
az customlocation list -g <NFC_MRG> --subscription <CUSTOMER_SUB_ID> -o table
310311
311312
# Fabric
312-
az networkfabric fabric list --resource-group <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
313-
az networkfabric rack list -o table --resource-group <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
314-
az networkfabric fabric device list --resource-group <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
313+
az networkfabric fabric list -g <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
314+
az networkfabric rack list -g <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
315+
az networkfabric fabric device list -g <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
315316
az networkfabric nni list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
316317
az networkfabric acl list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
317318
az networkfabric l2domain list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
318319
319320
# CM
320-
az networkcloud clustermanager list --subscription <CUSTOMER_SUB_ID> -o table
321+
az networkcloud clustermanager list -g <CM_RG> --subscription <CUSTOMER_SUB_ID> -o table
321322
322323
# Cluster
323-
az networkcloud cluster list --subscription <CUSTOMER_SUB_ID> -o table
324+
az networkcloud cluster list -g <CLUSTER_RG> --subscription <CUSTOMER_SUB_ID> -o table
324325
az networkcloud baremetalmachine list -g <CLUSTER_MRG> --subscription <CUSTOMER_SUB_ID> --query "sort_by([]. {name:name,kubernetesNodeName:kubernetesNodeName,location:location,readyState:readyState,provisioningState:provisioningState,detailedStatus:detailedStatus,detailedStatusMessage:detailedStatusMessage,cordonStatus:cordonStatus,powerState:powerState,machineRoles:machineRoles| join(', ', @),createdAt:systemData.createdAt}, &name)" -o table
325326
az networkcloud storageappliance list -g <CLUSTER_MRG> --subscription <CUSTOMER_SUB_ID> -o table
326327

0 commit comments

Comments
 (0)