Skip to content

Commit 43a0700

Browse files
authored
Remove bold formatting from CLI command descriptions
1 parent b2732c4 commit 43a0700

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/operator-nexus/troubleshoot-reboot-reimage-replace.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -88,22 +88,22 @@ A reimage action is the best practice for lowest operational risk to ensure the
8888

8989
As a best practice, make sure the BMM's workloads are drained using the cordon command, with evacuate "True", before executing the reimage command.
9090

91-
***To identify if any workloads are currently running on a BMM, run the following command:***
91+
**To identify if any workloads are currently running on a BMM, run the following command:**
9292

93-
***For Virtual Machines:***
93+
**For Virtual Machines:**
9494
```azurecli
9595
az networkcloud baremetalmachine show -n <nodeName> /
9696
--resource-group <resourceGroup> /
9797
--subscription <subscriptionID> | jq '.virtualMachinesAssociatedIds'
9898
```
9999

100-
***For Nexus Kubernetes cluster nodes: (requires logging into the Nexus Kubernetes cluster)***
100+
**For Nexus Kubernetes cluster nodes: (requires logging into the Nexus Kubernetes cluster)**
101101

102102
```
103103
kubectl get nodes <resourceName> -ojson |jq '.metadata.labels."topology.kubernetes.io/baremetalmachine"'
104104
```
105105

106-
***The following Azure CLI command will `cordon` the specified bareMetalMachineName.***
106+
**The following Azure CLI command will `cordon` the specified bareMetalMachineName.**
107107
```
108108
az networkcloud baremetalmachine cordon \
109109
--evacuate "True" \
@@ -112,15 +112,15 @@ az networkcloud baremetalmachine cordon \
112112
--subscription <subscriptionID>
113113
```
114114

115-
***The following Azure CLI command will `reimage` the specified bareMetalMachineName.***
115+
**The following Azure CLI command will `reimage` the specified bareMetalMachineName.**
116116
```
117117
az networkcloud baremetalmachine reimage \
118118
--name <bareMetalMachineName> \
119119
--resource-group "<resourceGroup>" \
120120
--subscription <subscriptionID>
121121
```
122122

123-
***The following Azure CLI command will `uncordon` the specified bareMetalMachineName.***
123+
**The following Azure CLI command will `uncordon` the specified bareMetalMachineName.**
124124
```
125125
az networkcloud baremetalmachine uncordon \
126126
--name <bareMetalMachineName> \
@@ -139,7 +139,7 @@ A hardware validation process is invoked to ensure the integrity of the physical
139139
140140
As a best practice, first issue a `cordon` command to remove the bare metal machine from workload scheduling and then shut down the BMM in advance of physical repairs.
141141

142-
***The following Azure CLI command will `cordon` the specified bareMetalMachineName.***
142+
**The following Azure CLI command will `cordon` the specified bareMetalMachineName.**
143143
```
144144
az networkcloud baremetalmachine cordon \
145145
--evacuate "True" \
@@ -170,7 +170,7 @@ When you're performing the following physical repairs, a replace action ***is re
170170

171171
After physical repairs are completed, perform a replace action.
172172

173-
***The following Azure CLI command will `replace` the specified bareMetalMachineName.***
173+
**The following Azure CLI command will `replace` the specified bareMetalMachineName.**
174174
```
175175
az networkcloud baremetalmachine replace \
176176
--name <bareMetalMachineName> \
@@ -183,7 +183,7 @@ az networkcloud baremetalmachine replace \
183183
--subscription <subscriptionID>
184184
```
185185

186-
***The following Azure CLI command will uncordon the specified bareMetalMachineName.***
186+
**The following Azure CLI command will uncordon the specified bareMetalMachineName.**
187187
```
188188
az networkcloud baremetalmachine uncordon \
189189
--name <bareMetalMachineName> \

0 commit comments

Comments
 (0)