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-cluster-runtime-upgrade-template.md
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -289,25 +289,26 @@ Review the Operator Nexus release notes for any version specific actions require
289
289
Validate the health and status of all the Nexus Instance resources with the [Nexus Instance Readiness Test (IRT)](howto-run-instance-readiness-testing.md).
290
290
291
291
If not using IRT, perform resource validation of all Nexus Instance components with Azure CLI:
292
-
```
292
+
``````
293
+
# Check `ProvisioningState = Succeeded` in all resources
294
+
293
295
# NFC
294
-
az networkfabric controller list --subscription <CUSTOMER_SUB_ID> -o table
295
-
az vm list -o table --query "[?location=='<AZURE_REGION>']" --subscription <CUSTOMER_SUB_ID>
296
-
az customlocation list -o table --query "[?location=='<AZURE_REGION>']" | grep <NFC_NAME> --subscription <CUSTOMER_SUB_ID>
296
+
az networkfabric controller list -g <NFC_RG> --subscription <CUSTOMER_SUB_ID> -o table
297
+
az customlocation list -g <NFC_MRG> --subscription <CUSTOMER_SUB_ID> -o table
297
298
298
299
# Fabric
299
-
az networkfabric fabric list --resource-group <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
300
-
az networkfabric rack list -o table --resource-group <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
301
-
az networkfabric fabric device list --resource-group <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
300
+
az networkfabric fabric list -g <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
301
+
az networkfabric rack list -g <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
302
+
az networkfabric fabric device list -g <NF_RG> --subscription <CUSTOMER_SUB_ID> -o table
302
303
az networkfabric nni list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
303
304
az networkfabric acl list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
304
305
az networkfabric l2domain list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
305
306
306
307
# CM
307
-
az networkcloud clustermanager list --subscription <CUSTOMER_SUB_ID> -o table
308
+
az networkcloud clustermanager list -g <CM_RG> --subscription <CUSTOMER_SUB_ID> -o table
308
309
309
310
# Cluster
310
-
az networkcloud cluster list --subscription <CUSTOMER_SUB_ID> -o table
311
+
az networkcloud cluster list -g <CLUSTER_RG> --subscription <CUSTOMER_SUB_ID> -o table
311
312
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
312
313
az networkcloud storageappliance list -g <CLUSTER_MRG> --subscription <CUSTOMER_SUB_ID> -o table
0 commit comments