You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/custom-node-configuration.md
+2-38Lines changed: 2 additions & 38 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Customize the node configuration for Azure Kubernetes Service (AKS) node pools (preview)
2
+
title: Customize the node configuration for Azure Kubernetes Service (AKS) node pools
3
3
description: Learn how to customize the configuration on Azure Kubernetes Service (AKS) cluster nodes and node pools.
4
4
ms.service: container-service
5
5
ms.topic: article
@@ -8,46 +8,10 @@ ms.author: jpalma
8
8
author: palma21
9
9
---
10
10
11
-
# Customize node configuration for Azure Kubernetes Service (AKS) node pools (preview)
11
+
# Customize node configuration for Azure Kubernetes Service (AKS) node pools
12
12
13
13
Customizing your node configuration allows you to configure or tune your operating system (OS) settings or the kubelet parameters to match the needs of the workloads. When you create an AKS cluster or add a node pool to your cluster, you can customize a subset of commonly used OS and kubelet settings. To configure settings beyond this subset, [use a daemon set to customize your needed configurations without losing AKS support for your nodes](support-policies.md#shared-responsibility).
14
14
15
-
## Register the `CustomNodeConfigPreview` preview feature
16
-
17
-
To create an AKS cluster or node pool that can customize the kubelet parameters or OS settings, you must enable the `CustomNodeConfigPreview` feature flag on your subscription.
18
-
19
-
Register the `CustomNodeConfigPreview` feature flag by using the [az feature register][az-feature-register] command, as shown in the following example:
20
-
21
-
```azurecli-interactive
22
-
az feature register --namespace "Microsoft.ContainerService" --name "CustomNodeConfigPreview"
23
-
```
24
-
25
-
It takes a few minutes for the status to show *Registered*. Verify the registration status by using the [az feature list][az-feature-list] command:
26
-
27
-
```azurecli-interactive
28
-
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/CustomNodeConfigPreview')].{Name:name,State:properties.state}"
29
-
```
30
-
31
-
When ready, refresh the registration of the *Microsoft.ContainerService* resource provider by using the [az provider register][az-provider-register] command:
32
-
33
-
```azurecli-interactive
34
-
az provider register --namespace Microsoft.ContainerService
35
-
```
36
-
37
-
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
38
-
39
-
## Install aks-preview CLI extension
40
-
41
-
To create an AKS cluster or a node pool that can customize the kubelet parameters or OS settings, you need the latest *aks-preview* Azure CLI extension. Install the *aks-preview* Azure CLI extension by using the [az extension add][az-extension-add] command. Or install any available updates by using the [az extension update][az-extension-update] command.
42
-
43
-
```azurecli-interactive
44
-
# Install the aks-preview extension
45
-
az extension add --name aks-preview
46
-
47
-
# Update the extension to make sure you have the latest version installed
0 commit comments