@@ -462,26 +462,31 @@ Validate the health and status of all the Nexus Instance resources created durin
462
462
463
463
To perform a resource validation of the Nexus Instance components post-deployment through Azure CLI:
464
464
```
465
+ # Check `ProvisioningState = Succeeded` in all resources
466
+
465
467
# NFC
466
- az networkfabric controller list --subscription <CUSTOMER_SUB_ID> -o table
467
- az vm list -o table --query "[?location=='<AZURE_REGION>']" --subscription <CUSTOMER_SUB_ID>
468
- az customlocation list -o table --query "[?location=='<AZURE_REGION>']" | grep <NFC_NAME> --subscription <CUSTOMER_SUB_ID>
468
+ az networkfabric controller list -g <NFC_RG> --subscription <CUSTOMER_SUB_ID> -o table
469
+ az customlocation list -g <NFC_MRG> --subscription <CUSTOMER_SUB_ID> -o table
469
470
470
471
# Fabric
471
- az networkfabric fabric list --resource-group <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
472
- az networkfabric rack list -o table --resource-group <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
473
- az networkfabric fabric device list --resource-group <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
472
+ az networkfabric fabric list -g <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
473
+ az networkfabric rack list -g <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
474
+ az networkfabric fabric device list -g <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
474
475
az networkfabric nni list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
475
476
az networkfabric acl list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
476
477
az networkfabric l2domain list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
477
478
478
479
# CM
479
- az networkcloud clustermanager list --subscription <CUSTOMER_SUB_ID> -o table
480
+ az networkcloud clustermanager list -g <CM_RG> - -subscription <CUSTOMER_SUB_ID> -o table
480
481
481
482
# Cluster
482
- az networkcloud cluster list --subscription <CUSTOMER_SUB_ID> -o table
483
+ az networkcloud cluster list -g <CLUSTER_RG> - -subscription <CUSTOMER_SUB_ID> -o table
483
484
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
484
485
az networkcloud storageappliance list -g <CLUSTER_MRG> --subscription <CUSTOMER_SUB_ID> -o table
486
+
487
+ # Tenant Workloads
488
+ az networkcloud virtualmachine list --sub <CUSTOMER_SUB_ID> --query "reverse(sort_by([?clusterId=='<CLUSTER_RID>'].{name:name, createdAt:systemData.createdAt, resourceGroup:resourceGroup, powerState:powerState, provisioningState:provisioningState, detailedStatus:detailedStatus,bareMetalMachineId:bareMetalMachineIdi,CPUCount:cpuCores, EmulatorStatus:isolateEmulatorThread}, &createdAt))" -o table
489
+ az networkcloud kubernetescluster list --sub <CUSTOMER_SUB_ID> --query "[?clusterId=='<CLUSTER_RID>'].{name:name, resourceGroup:resourceGroup, provisioningState:provisioningState, detailedStatus:detailedStatus, detailedStatusMessage:detailedStatusMessage, createdAt:systemData.createdAt, kubernetesVersion:kubernetesVersion}" -o table
485
490
```
486
491
487
492
> [ !Note]
0 commit comments