Skip to content

Commit c41dd04

Browse files
authored
Update howto-nexus-instance-deployment-template.md
Updates from comments and acrolinx.
1 parent a4a2cc8 commit c41dd04

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

articles/operator-nexus/howto-nexus-instance-deployment-template.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -462,26 +462,31 @@ Validate the health and status of all the Nexus Instance resources created durin
462462

463463
To perform a resource validation of the Nexus Instance components post-deployment through Azure CLI:
464464
```
465+
# Check `ProvisioningState = Succeeded` in all resources
466+
465467
# 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
469470
470471
# 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
474475
az networkfabric nni list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
475476
az networkfabric acl list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
476477
az networkfabric l2domain list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
477478
478479
# 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
480481
481482
# 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
483484
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
484485
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
485490
```
486491

487492
> [!Note]

0 commit comments

Comments
 (0)