Skip to content

Commit 93ea137

Browse files
committed
add doc fixes
1 parent 4c99bd2 commit 93ea137

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

articles/aks/start-stop-nodepools.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,19 @@ az extension update --name aks-preview
3131
az feature register --namespace "Microsoft.ContainerService" --name "PreviewStartStopAgentPool"
3232
```
3333

34-
> [!NOTE]
34+
## Stop an AKS node pool
35+
36+
> [!IMPORTANT]
3537
> When using node pool start/stop, the following is expected behavior:
3638
>
37-
> * You can not stop system pools.
38-
> * spot node pools are supported.
39+
> * You can't stop system pools.
40+
> * Spot node pools are supported.
3941
> * Stopped node pools can be upgraded.
40-
41-
## Stop an AKS node pool
42+
> * The cluster and node pool must be running.
4243
4344
### [Azure CLI](#tab/azure-cli)
4445

45-
You can use the `az aks nodepool stop` command to stop a running AKS node pool. To properly stop a node pool, you must make sure that the cluster is currently running and you are not stopping a system pool. The following example stops a cluster named *testnodepool*:
46+
Use `az aks nodepool stop` to stop a running AKS node pool. The following example stops the *testnodepool* node pool:
4647

4748
```azurecli-interactive
4849
az aks nodepool stop --nodepool-name testnodepool -resource-group myResourceGroup --cluster-name myAKSCluster
@@ -64,19 +65,20 @@ You can verify when your node pool is stopped by using the [az aks show][az-aks-
6465
}
6566
```
6667

67-
If the `provisioningState` shows `Stopping` that means your node pool hasn't fully stopped yet.
68+
> [!NOTE]
69+
> If the `provisioningState` shows `Stopping`, your node pool hasn't fully stopped yet.
6870
69-
## Start an AKS node pool
71+
## Start a stopped AKS node pool
7072

7173
### [Azure CLI](#tab/azure-cli)
7274

73-
You can use the `az aks nodepool start` command to start a stopped AKS node pool. The following example starts a node pool named *testnodepool*:
75+
Use `az aks nodepool start` to start a stopped AKS node pool. The following example starts the stopped node pool named *testnodepool*:
7476

7577
```azurecli-interactive
7678
az aks nodepool start --nodepool-name testnodepool -resource-group myResourceGroup --cluster-name myAKSCluster
7779
```
7880

79-
You can verify when your node pool has started by using the [az aks show][az-aks-show] command and confirming the `powerState` shows `Running` as on the below output:
81+
You can verify your node pool has started using [az aks show][az-aks-show] and confirming the `powerState` shows `Running`. For example:
8082

8183
```json
8284
{
@@ -92,7 +94,8 @@ You can verify when your node pool has started by using the [az aks show][az-aks
9294
}
9395
```
9496

95-
If the `provisioningState` shows `Starting` that means your node pool hasn't fully started yet.
97+
> [!NOTE]
98+
> If the `provisioningState` shows `Starting`, your node pool hasn't fully started yet.
9699
97100
---
98101

0 commit comments

Comments
 (0)