Skip to content

Commit 9e6579b

Browse files
committed
final fix
1 parent d05aeff commit 9e6579b

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

articles/aks/start-stop-nodepools.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Start and Stop a node pool on Azure Kubernetes Service (AKS)
2+
title: Start and Stop a node pool on Azure Kubernetes Service (AKS) (preview)
33
description: Learn how to start or stop a node pool on Azure Kubernetes Service (AKS).
44
services: container-service
55
ms.topic: article
@@ -8,7 +8,7 @@ author: qpetraroia
88
ms.author: qpetraroia
99
---
1010

11-
# Start and Stop an Azure Kubernetes Service (AKS) node pool
11+
# Start and Stop an Azure Kubernetes Service (AKS) node pool (preview)
1212

1313
Your AKS workloads may not need to run continuously, for example a development cluster that has node pools running specific workloads. To optimize your costs, you can completely turn off (stop) your node pools in your AKS cluster, allowing you to save on compute costs.
1414

@@ -28,8 +28,15 @@ az extension add --name aks-preview
2828
2929
# Update the extension to make sure you have the latest version installed
3030
az extension update --name aks-preview
31+
```
32+
33+
### Register the `PreviewStartStopAgentPool` preview feature
34+
35+
To use the feature, you must also enable the `PreviewStartStopAgentPool` feature flag on your subscription.
3136

32-
# Register `node pool start/stop` for use
37+
Register the `PreviewStartStopAgentPool` feature flag by using the [az feature register][az-feature-register] command, as shown in the following example:
38+
39+
```azurecli-interactive
3340
az feature register --namespace "Microsoft.ContainerService" --name "PreviewStartStopAgentPool"
3441
```
3542

0 commit comments

Comments
 (0)