Skip to content

Commit d0b3288

Browse files
authored
Update howto-cluster-runtime-upgrade-template.md
Updates from comments and acrolinx.
1 parent 8c93d2c commit d0b3288

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

articles/operator-nexus/howto-cluster-runtime-upgrade-template.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -289,25 +289,26 @@ Review the Operator Nexus release notes for any version specific actions require
289289
Validate the health and status of all the Nexus Instance resources with the [Nexus Instance Readiness Test (IRT)](howto-run-instance-readiness-testing.md).
290290

291291
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+
293295
# 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
297298
298299
# 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
302303
az networkfabric nni list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
303304
az networkfabric acl list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
304305
az networkfabric l2domain list -g <NF_RG> --fabric <NF_NAME> --subscription <CUSTOMER_SUB_ID> -o table
305306
306307
# 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
308309
309310
# 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
311312
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
312313
az networkcloud storageappliance list -g <CLUSTER_MRG> --subscription <CUSTOMER_SUB_ID> -o table
313314

0 commit comments

Comments
 (0)