@@ -41,7 +41,7 @@ Available upgrades are retrievable via the Azure CLI:
41
41
``` azurecli
42
42
az networkcloud cluster show --name "<clusterName>" /
43
43
--resource-group "<resourceGroup>" /
44
- --subscription <SUBSCRIPTION_ID >
44
+ --subscription <subscriptionID >
45
45
```
46
46
47
47
In the output, you can find the ` availableUpgradeVersions ` property and look at the ` targetClusterVersion ` field:
@@ -72,7 +72,7 @@ az networkcloud cluster update /
72
72
--update-strategy strategy-type="Rack" threshold-type="PercentSuccess" /
73
73
threshold-value="<thresholdValue>" max-unavailable=<maxNodesOffline> /
74
74
wait-time-minutes=<waitTimeBetweenRacks> /
75
- --subscription <SUBSCRIPTION_ID >
75
+ --subscription <subscriptionID >
76
76
```
77
77
78
78
Required parameters:
@@ -91,15 +91,15 @@ az networkcloud cluster update --name "<clusterName>" /
91
91
--resource-group "<resourceGroup>" /
92
92
--update-strategy strategy-type="Rack" threshold-type="PercentSuccess" /
93
93
threshold-value=60 wait-time-minutes=1 /
94
- --subscription <SUBSCRIPTION_ID >
94
+ --subscription <subscriptionID >
95
95
```
96
96
97
97
Verify update:
98
98
99
99
```
100
100
az networkcloud cluster show --resource-group "<resourceGroup>" /
101
101
--name "<clusterName>" /
102
- --subscription <SUBSCRIPTION_ID >| grep -a5 updateStrategy
102
+ --subscription <subscriptionID >| grep -a5 updateStrategy
103
103
104
104
"strategyType": "Rack",
105
105
"thresholdType": "PercentSuccess",
@@ -116,15 +116,15 @@ az networkcloud cluster update --name "<clusterName>" /
116
116
--resource-group "<resourceGroup>" /
117
117
--update-strategy strategy-type="Rack" threshold-type="CountSuccess" /
118
118
threshold-value=10 wait-time-minutes=1 /
119
- --subscription <SUBSCRIPTION_ID >
119
+ --subscription <subscriptionID >
120
120
```
121
121
122
122
Verify update:
123
123
124
124
```
125
125
az networkcloud cluster show --resource-group "<resourceGroup>" /
126
126
--name "<clusterName>" /
127
- --subscription <SUBSCRIPTION_ID >| grep -a5 updateStrategy
127
+ --subscription <subscriptionID >| grep -a5 updateStrategy
128
128
129
129
"strategyType": "Rack",
130
130
"thresholdType": "CountSuccess",
@@ -146,7 +146,7 @@ To perform an upgrade of the runtime, use the following Azure CLI command:
146
146
az networkcloud cluster update-version --cluster-name "<clusterName>" /
147
147
--target-cluster-version "<versionNumber>" /
148
148
--resource-group "<resourceGroupName>" /
149
- --subscription <SUBSCRIPTION_ID >
149
+ --subscription <subscriptionID >
150
150
```
151
151
152
152
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
170
170
``` azurecli
171
171
az networkcloud cluster show --cluster-name "<clusterName>" /
172
172
--resource-group "<resourceGroupName>" /
173
- --subscription <SUBSCRIPTION_ID >
173
+ --subscription <subscriptionID >
174
174
```
175
175
176
176
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