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/concepts-nexus-availability.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ Operator Nexus upgrade is initiated by the customer, but it's then managed by th
119
119
120
120
- The process is only active on one rack in the selected site at a time. Although upgrade is done in-place, there's still some impact to the worker nodes in the rack during the upgrade.
121
121
122
-
For more information about the upgrade process, see [this article](./howto-cluster-runtime-upgrade.md#upgrading-cluster-runtime-using-cli). For more information about ensuring control-plane resiliency, see [this one](./concepts-rack-resiliency.md).
122
+
For more information about the upgrade process, see [this article](./howto-cluster-runtime-upgrade.md#upgrade-cluster-runtime-using-cli). For more information about ensuring control-plane resiliency, see [this one](./concepts-rack-resiliency.md).
123
123
124
124
## Designing and Operating High Availability Workloads for Operator Nexus
Copy file name to clipboardExpand all lines: articles/operator-nexus/howto-baremetal-functions.md
+29-15Lines changed: 29 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,8 +48,8 @@ This command will `power-off` the specified `bareMetalMachineName`.
48
48
```azurecli
49
49
az networkcloud baremetalmachine power-off \
50
50
--name <BareMetalMachineName> \
51
-
--resource-group <CLUSTER_MRG> \
52
-
--subscription <SUBSCRIPTION_ID>
51
+
--resource-group <resourceGroup> \
52
+
--subscription <subscriptionID>
53
53
```
54
54
55
55
## Start a BMM
@@ -59,8 +59,8 @@ This command will `start` the specified `bareMetalMachineName`.
59
59
```azurecli
60
60
az networkcloud baremetalmachine start \
61
61
--name <BareMetalMachineName> \
62
-
--resource-group <CLUSTER_MRG> \
63
-
--subscription <SUBSCRIPTION_ID>
62
+
--resource-group <resourceGroup> \
63
+
--subscription <subscriptionID>
64
64
```
65
65
66
66
## Restart a BMM
@@ -70,12 +70,26 @@ This command will `restart` the specified `bareMetalMachineName`.
70
70
```azurecli
71
71
az networkcloud baremetalmachine restart \
72
72
--name <BareMetalMachineName> \
73
-
--resource-group <CLUSTER_MRG> \
74
-
--subscription <SUBSCRIPTION_ID>
73
+
--resource-group <resourceGroup> \
74
+
--subscription <subscriptionID>
75
75
```
76
76
77
77
## Make a BMM unschedulable (cordon)
78
-
<!--(PLACEHOLDER: We need to explain how a customer can identify if workloads are currently running on a BMM and the az cli command used to get this information. Ask NAKS team to provide.)-->
78
+
79
+
**To identify if any workloads are currently running on a BMM, run the following command:**
80
+
81
+
**For Virtual Machines:**
82
+
```azurecli
83
+
az networkcloud baremetalmachine show -n <nodeName> /
0 commit comments