Skip to content

Commit ee01ced

Browse files
committed
edit pass: planned-maintenance
1 parent 1975241 commit ee01ced

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/aks/planned-maintenance.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ When you use the feature of planned maintenance in AKS, you can run both types o
2424
## Before you begin
2525

2626
* This article assumes that you have an existing AKS cluster. If you don't have an AKS cluster, see [Create an AKS cluster](./learn/quick-kubernetes-deploy-cli.md).
27-
* If you're using the Azure CLI, upgrade to the latest version by using the [az upgrade](/cli/azure/update-azure-cli#manual-update) command.
27+
* If you're using the Azure CLI, upgrade to the latest version by using the [`az upgrade`](/cli/azure/update-azure-cli#manual-update) command.
2828

2929
## Considerations
3030

@@ -136,7 +136,7 @@ Valid values for `weekIndex` include `First`, `Second`, `Third`, `Fourth`, and `
136136

137137
### [Azure CLI](#tab/azure-cli)
138138

139-
Add a maintenance window configuration to an AKS cluster by using the [az aks maintenanceconfiguration add][az-aks-maintenanceconfiguration-add] command.
139+
Add a maintenance window configuration to an AKS cluster by using the [`az aks maintenanceconfiguration add`][az-aks-maintenanceconfiguration-add] command.
140140

141141
The first example adds a new `default` configuration that schedules maintenance to run from 1:00 AM to 2:00 AM every Monday. The second example adds a new `aksManagedAutoUpgradeSchedule` configuration that schedules maintenance to run every third Friday between 12:00 AM and 8:00 AM in the `UTC+5:30` time zone.
142142

@@ -232,7 +232,7 @@ You can use a JSON file to create a maintenance configuration instead of using p
232232
}
233233
```
234234

235-
2. Add the maintenance window configuration by using the [az aks maintenanceconfiguration add][az-aks-maintenanceconfiguration-add] command with the `--config-file` parameter.
235+
2. Add the maintenance window configuration by using the [`az aks maintenanceconfiguration add`][az-aks-maintenanceconfiguration-add] command with the `--config-file` parameter.
236236

237237
The first example adds a new `default` configuration by using the `default.json` file. The second example adds a new `aksManagedAutoUpgradeSchedule` configuration by using the `autoUpgradeWindow.json` file.
238238

@@ -250,7 +250,7 @@ You can use a JSON file to create a maintenance configuration instead of using p
250250

251251
### [Azure CLI](#tab/azure-cli)
252252

253-
Update an existing maintenance configuration by using the [az aks maintenanceconfiguration update][az-aks-maintenanceconfiguration-update] command.
253+
Update an existing maintenance configuration by using the [`az aks maintenanceconfiguration update`][az-aks-maintenanceconfiguration-update] command.
254254

255255
The following example updates the `default` configuration to schedule maintenance to run from 2:00 AM to 3:00 AM every Monday:
256256

@@ -295,7 +295,7 @@ az aks maintenanceconfiguration update --resource-group myResourceGroup --cluste
295295
}
296296
```
297297

298-
2. Update the maintenance window configuration by using the [az aks maintenanceconfiguration update][az-aks-maintenanceconfiguration-update] command with the `--config-file` parameter:
298+
2. Update the maintenance window configuration by using the [`az aks maintenanceconfiguration update`][az-aks-maintenanceconfiguration-update] command with the `--config-file` parameter:
299299

300300
```azurecli-interactive
301301
az aks maintenanceconfiguration update --resource-group myResourceGroup --cluster-name myAKSCluster --name default --config-file ./default.json
@@ -305,15 +305,15 @@ az aks maintenanceconfiguration update --resource-group myResourceGroup --cluste
305305

306306
## List all maintenance windows in an existing cluster
307307

308-
List the current maintenance configuration windows in your AKS cluster by using the [az aks maintenanceconfiguration list][az-aks-maintenanceconfiguration-list] command:
308+
List the current maintenance configuration windows in your AKS cluster by using the [`az aks maintenanceconfiguration list`][az-aks-maintenanceconfiguration-list] command:
309309

310310
```azurecli-interactive
311311
az aks maintenanceconfiguration list --resource-group myResourceGroup --cluster-name myAKSCluster
312312
```
313313

314314
## Show a specific maintenance configuration window in an existing cluster
315315

316-
View a specific maintenance configuration window in your AKS cluster by using the [az aks maintenanceconfiguration show][az-aks-maintenanceconfiguration-show] command with the `--name` parameter:
316+
View a specific maintenance configuration window in your AKS cluster by using the [`az aks maintenanceconfiguration show`][az-aks-maintenanceconfiguration-show] command with the `--name` parameter:
317317

318318
```azurecli-interactive
319319
az aks maintenanceconfiguration show --resource-group myResourceGroup --cluster-name myAKSCluster --name aksManagedAutoUpgradeSchedule
@@ -358,7 +358,7 @@ The following example output shows the maintenance window for `aksManagedAutoUpg
358358

359359
### [Azure CLI](#tab/azure-cli)
360360

361-
Delete a maintenance configuration window in your AKS cluster by using the [az aks maintenanceconfiguration delete][az-aks-maintenanceconfiguration-delete] command.
361+
Delete a maintenance configuration window in your AKS cluster by using the [`az aks maintenanceconfiguration delete`][az-aks-maintenanceconfiguration-delete] command.
362362

363363
The following example deletes the `autoUpgradeSchedule` maintenance configuration:
364364

@@ -380,7 +380,7 @@ az aks maintenanceconfiguration delete --resource-group myResourceGroup --cluste
380380

381381
### [JSON file](#tab/json-file)
382382

383-
Delete a maintenance configuration window in your AKS cluster by using the [az aks maintenanceconfiguration delete][az-aks-maintenanceconfiguration-delete] command.
383+
Delete a maintenance configuration window in your AKS cluster by using the [`az aks maintenanceconfiguration delete`][az-aks-maintenanceconfiguration-delete] command.
384384

385385
The following example deletes the `autoUpgradeSchedule` maintenance configuration:
386386

0 commit comments

Comments
 (0)