Skip to content

Commit 6c5b109

Browse files
committed
Making final updates so doc is ready for sign off
1 parent 55b50a8 commit 6c5b109

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

articles/azure-linux/tutorial-azure-linux-migration.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ title: Azure Linux Container Host for AKS tutorial - Migrating to Azure Linux
33
description: In this Azure Linux Container Host for AKS tutorial, you learn how to migrate your nodes to Azure Linux nodes.
44
author: htaubenfeld
55
ms.author: htaubenfeld
6+
ms.reviewer: schaffererin
67
ms.service: microsoft-linux
78
ms.topic: tutorial
8-
ms.date: 01/12/2024
9+
ms.date: 01/19/2024
910
---
1011

1112
# Tutorial: Migrate nodes to Azure Linux
@@ -26,18 +27,18 @@ If you don't have any existing nodes to migrate to Azure Linux, skip to the [nex
2627
2728
* You need the latest version of Azure CLI. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
2829

29-
## Remove existing node pools and add new Azure Linux node pools
30+
## Add Azure Linux node pools and remove existing node pools
3031

31-
1. Remove your existing nodes using the `az aks nodepool delete` command.
32+
1. Add a new Azure Linux node pool using the `az aks nodepool add` command. This command adds a new node pool to your cluster with the `--mode System` flag, which makes it a system node pool. System node pools are required for Azure Linux clusters.
3233

3334
```azurecli-interactive
34-
az aks nodepool delete --resource-group <resource-group-name> --cluster-name <cluster-name> --name <node-pool-name>
35+
az aks nodepool add --resource-group <resource-group-name> --cluster-name <cluster-name> --name <node-pool-name> --mode System --os-sku AzureLinux
3536
```
3637
37-
2. Add a new Azure Linux node pool using the `az aks nodepool add` command. This command adds a new node pool to your cluster with the `--mode System` flag, which makes it a system node pool. System node pools are required for Azure Linux clusters.
38+
2. Remove your existing nodes using the `az aks nodepool delete` command.
3839
3940
```azurecli-interactive
40-
az aks nodepool add --resource-group <resource-group-name> --cluster-name <cluster-name> --name <node-pool-name> --mode System --os-sku AzureLinux
41+
az aks nodepool delete --resource-group <resource-group-name> --cluster-name <cluster-name> --name <node-pool-name>
4142
```
4243
4344
## In-place OS SKU migration (preview)
@@ -115,7 +116,7 @@ There are several settings that can block the OS SKU migration request. To ensur
115116
116117
#### Migrate the OS SKU of your Ubuntu node pool
117118
118-
* Migrate the OS SKU of your node pool to Azure Linux using the `az aks nodepool update` command. This command updates the OS SKU for your node pool from Ubuntu to Azure Linux. The change is applied immediately.
119+
* Migrate the OS SKU of your node pool to Azure Linux using the `az aks nodepool update` command. This command updates the OS SKU for your node pool from Ubuntu to Azure Linux. The OS SKU change triggers an immediate upgrade operation, which takes several minutes to complete.
119120
120121
```azurecli-interactive
121122
az aks nodepool update --resource-group <resource-group-name> --cluster-name <cluster-name> --name <node-pool-name> --os-sku AzureLinux

0 commit comments

Comments
 (0)