Skip to content

Commit 88373ac

Browse files
authored
Update howto-cluster-runtime-upgrade.md
1 parent 68be33b commit 88373ac

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Available upgrades are retrievable via the Azure CLI:
4141
```azurecli
4242
az networkcloud cluster show --name "<clusterName>" /
4343
--resource-group "<resourceGroup>" /
44-
--subscription <SUBSCRIPTION_ID>
44+
--subscription <subscriptionID>
4545
```
4646

4747
In the output, you can find the `availableUpgradeVersions` property and look at the `targetClusterVersion` field:
@@ -72,7 +72,7 @@ az networkcloud cluster update /
7272
--update-strategy strategy-type="Rack" threshold-type="PercentSuccess" /
7373
threshold-value="<thresholdValue>" max-unavailable=<maxNodesOffline> /
7474
wait-time-minutes=<waitTimeBetweenRacks> /
75-
--subscription <SUBSCRIPTION_ID>
75+
--subscription <subscriptionID>
7676
```
7777

7878
Required parameters:
@@ -91,15 +91,15 @@ az networkcloud cluster update --name "<clusterName>" /
9191
--resource-group "<resourceGroup>" /
9292
--update-strategy strategy-type="Rack" threshold-type="PercentSuccess" /
9393
threshold-value=60 wait-time-minutes=1 /
94-
--subscription <SUBSCRIPTION_ID>
94+
--subscription <subscriptionID>
9595
```
9696

9797
Verify update:
9898

9999
```
100100
az networkcloud cluster show --resource-group "<resourceGroup>" /
101101
--name "<clusterName>" /
102-
--subscription <SUBSCRIPTION_ID>| grep -a5 updateStrategy
102+
--subscription <subscriptionID>| grep -a5 updateStrategy
103103
104104
"strategyType": "Rack",
105105
"thresholdType": "PercentSuccess",
@@ -116,15 +116,15 @@ az networkcloud cluster update --name "<clusterName>" /
116116
--resource-group "<resourceGroup>" /
117117
--update-strategy strategy-type="Rack" threshold-type="CountSuccess" /
118118
threshold-value=10 wait-time-minutes=1 /
119-
--subscription <SUBSCRIPTION_ID>
119+
--subscription <subscriptionID>
120120
```
121121

122122
Verify update:
123123

124124
```
125125
az networkcloud cluster show --resource-group "<resourceGroup>" /
126126
--name "<clusterName>" /
127-
--subscription <SUBSCRIPTION_ID>| grep -a5 updateStrategy
127+
--subscription <subscriptionID>| grep -a5 updateStrategy
128128
129129
"strategyType": "Rack",
130130
"thresholdType": "CountSuccess",
@@ -146,7 +146,7 @@ To perform an upgrade of the runtime, use the following Azure CLI command:
146146
az networkcloud cluster update-version --cluster-name "<clusterName>" /
147147
--target-cluster-version "<versionNumber>" /
148148
--resource-group "<resourceGroupName>" /
149-
--subscription <SUBSCRIPTION_ID>
149+
--subscription <subscriptionID>
150150
```
151151

152152
The runtime upgrade is a long process. The upgrade first upgrades the management nodes and then sequentially rack by rack for the worker nodes.
@@ -170,7 +170,7 @@ To view the upgrade status through the Azure CLI, use `az networkcloud cluster s
170170
```azurecli
171171
az networkcloud cluster show --cluster-name "<clusterName>" /
172172
--resource-group "<resourceGroupName>" /
173-
--subscription <SUBSCRIPTION_ID>
173+
--subscription <subscriptionID>
174174
```
175175

176176
The output should be the target cluster's information and the cluster's detailed status and detail status message should be present.

0 commit comments

Comments
 (0)