Skip to content

Commit b2732c4

Browse files
authored
Fix typos and formatting in cluster configuration doc
1 parent 7754430 commit b2732c4

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

articles/operator-nexus/howto-configure-cluster.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ You can find examples for an 8-Rack 2M16C SKU cluster using these two files:
147147

148148
### Cluster validation
149149

150-
A successful Operator Nexus Cluster creation results in the creation of a Azure resource
150+
A successful Operator Nexus Cluster creation results in the creation of an Azure resource
151151
inside your subscription. The cluster ID, cluster provisioning state, and
152152
deployment state are returned as a result of a successful `cluster create`.
153153

@@ -169,13 +169,13 @@ Cluster create Logs can be viewed in the following locations:
169169
1. Azure portal Resource/ResourceGroup Activity logs.
170170
2. Azure CLI with `--debug` flag passed on command-line.
171171

172-
### Set Deployment Thresholds
172+
### Set deployment thresholds
173173

174174
There are two types of deployment thresholds that can be set on a cluster prior to cluster deployment. They are `compute-deployment-threshold` and `update-strategy`.
175175

176-
***--compute-deployment-threshold - The validation threshold indicating the allowable failures of compute nodes during environment hardware validation.***
176+
**--compute-deployment-threshold - The validation threshold indicating the allowable failures of compute nodes during environment hardware validation.**
177177

178-
If `compute-deployment-threshold` is not set, the default are as follows:
178+
If `compute-deployment-threshold` is not set, the defaults are as follows:
179179
```
180180
"strategyType": "Rack",
181181
"thresholdType": "PercentSuccess",
@@ -194,7 +194,7 @@ az networkcloud cluster update --name "<clusterName>" /
194194
--subscription <subscriptionID>
195195
```
196196

197-
### Validate update:
197+
### Validate update
198198

199199
```
200200
az networkcloud cluster show --resource-group "<resourceGroup>" --name "<clusterName>" | grep -a3 computeDeploymentThreshold
@@ -207,10 +207,10 @@ az networkcloud cluster show --resource-group "<resourceGroup>" --name "<cluster
207207
"value": 97
208208
```
209209

210-
In this example, if less than 97% of the compute nodes being deployed pass hardware validation, the cluster deployment will fail. ***NOTE: All kubernetes control plane (KCP) and nexus management plane (NMP) must pass hardware validation.*** If 97% or more of the compute nodes being deployed pass hardware validation, the cluster deployment will continue to the bootstrap provisioning phase. During compute bootstrap provisioning, the `update-strategy` (below) is used for compute nodes.
210+
In this example, if less than 97% of the compute nodes being deployed pass hardware validation, the cluster deployment will fail. **NOTE: All kubernetes control plane (KCP) and nexus management plane (NMP) must pass hardware validation.** If 97% or more of the compute nodes being deployed pass hardware validation, the cluster deployment will continue to the bootstrap provisioning phase. During compute bootstrap provisioning, the `update-strategy` (below) is used for compute nodes.
211211

212212

213-
***--update-strategy - The strategy for updating the cluster indicating the allowable compute node failures during bootstrap provisioning.***
213+
**--update-strategy - The strategy for updating the cluster indicating the allowable compute node failures during bootstrap provisioning.**
214214

215215
If the customer requests an `update-strategy` threshold that it is different from the default of 80%, you can run the following cluster update command.
216216

@@ -222,11 +222,11 @@ threshold-value="<thresholdValue>" wait-time-minutes=<waitTimeBetweenRacks> /
222222
--subscription <subscriptionID>
223223
```
224224

225-
strategy-type can be "Rack" (Rack by Rack) OR "PauseAfterRack" (Wait for customer response to continue)
225+
The strategy-type can be "Rack" (Rack by Rack) OR "PauseAfterRack" (Wait for customer response to continue).
226226

227-
threshold-type can be "PercentSuccess" OR "CountSuccess"
227+
The threshold-type can be "PercentSuccess" OR "CountSuccess".
228228

229-
If updateStrategy is not set, the default are as follows:
229+
If updateStrategy is not set, the defaults are as follows:
230230

231231
```
232232
"strategyType": "Rack",
@@ -285,7 +285,8 @@ az networkcloud cluster show --resource-group "<resourceGroup>" /
285285

286286
In this example, if less than 10 compute nodes being provisioned in a rack fail to provision (on a rack by rack basis), the cluster deployment will fail. If 10 or more of the compute nodes are successfully provisioned, cluster deployment moves on to the next rack of compute nodes.
287287

288-
***NOTE: Deployment thresholds cannot be changed after cluster deployment has started.***
288+
>[!NOTE]
289+
>Deployment thresholds cannot be changed after cluster deployment has started.
289290
290291

291292
## Deploy Cluster

0 commit comments

Comments
 (0)