Skip to content

Commit 7b092c3

Browse files
Fixed doc - aks snapshot show to aks nodepool snapshot
Changed "az aks snapshot show" to "az aks nodepool snapshot show"
1 parent d5d4127 commit 7b092c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/aks/node-pool-snapshot.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ az aks snapshot create --name MySnapshot --resource-group MyResourceGroup --node
4949
First you'll need the resource ID from the snapshot that was previously created, which you can get from the command below:
5050

5151
```azurecli-interactive
52-
SNAPSHOT_ID=$(az aks snapshot show --name MySnapshot --resource-group myResourceGroup --query id -o tsv)
52+
SNAPSHOT_ID=$(az aks nodepool snapshot show --name MySnapshot --resource-group myResourceGroup --query id -o tsv)
5353
```
5454

5555
Now, we can use the command below to add a new node pool based off of this snapshot.
@@ -65,7 +65,7 @@ You can upgrade a node pool to a snapshot configuration so long as the snapshot
6565
First you'll need the resource ID from the snapshot that was previously created, which you can get from the command below:
6666

6767
```azurecli-interactive
68-
SNAPSHOT_ID=$(az aks snapshot show --name MySnapshot --resource-group myResourceGroup --query id -o tsv)
68+
SNAPSHOT_ID=$(az aks nodepool snapshot show --name MySnapshot --resource-group myResourceGroup --query id -o tsv)
6969
```
7070

7171
Now, we can use this command to upgrade this node pool to this snapshot configuration.
@@ -84,7 +84,7 @@ When you create a cluster from a snapshot, the cluster original system pool will
8484
First you'll need the resource ID from the snapshot that was previously created, which you can get from the command below:
8585

8686
```azurecli-interactive
87-
SNAPSHOT_ID=$(az aks snapshot show --name MySnapshot --resource-group myResourceGroup --query id -o tsv)
87+
SNAPSHOT_ID=$(az aks nodepool snapshot show --name MySnapshot --resource-group myResourceGroup --query id -o tsv)
8888
```
8989

9090
Now, we can use this command to create this cluster off of the snapshot configuration.

0 commit comments

Comments
 (0)