Skip to content

Commit 406d422

Browse files
author
Justin Davies
committed
Remove Preview tags from Custom Node config
1 parent 04a3d71 commit 406d422

File tree

2 files changed

+3
-39
lines changed

2 files changed

+3
-39
lines changed

articles/aks/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
href: node-updates-kured.md
186186
- name: Configure an AKS cluster
187187
href: cluster-configuration.md
188-
- name: Custom node configuration (preview)
188+
- name: Custom node configuration
189189
href: custom-node-configuration.md
190190
- name: Integrate ACR with an AKS cluster
191191
href: cluster-container-registry-integration.md

articles/aks/custom-node-configuration.md

Lines changed: 2 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
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
33
description: Learn how to customize the configuration on Azure Kubernetes Service (AKS) cluster nodes and node pools.
44
ms.service: container-service
55
ms.topic: article
@@ -8,46 +8,10 @@ ms.author: jpalma
88
author: palma21
99
---
1010

11-
# Customize node configuration for Azure Kubernetes Service (AKS) node pools (preview)
11+
# Customize node configuration for Azure Kubernetes Service (AKS) node pools
1212

1313
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).
1414

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
48-
az extension update --name aks-preview
49-
```
50-
5115
## Use custom node configuration
5216

5317
### Kubelet custom configuration

0 commit comments

Comments
 (0)