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
- If you haven't already installed Azure Container Storage, follow the instructions in [Install Azure Container Storage](container-storage-aks-quickstart.md).
24
-
- Check if your target region is supported in [Azure Container Storage regions](container-storage-introduction.md#regional-availability)
24
+
- Check if your target region is supported in [Azure Container Storage regions](container-storage-introduction.md#regional-availability).
25
25
26
-
## Ensure VM with Ephemeral Disk support
26
+
## Choose a VM type that supports Ephemeral Disk
27
27
28
-
Ephemeral Disk is available in certain types of VM. If you plan to use Ephemeral Disk with local NVMe, a [storage optimized VM](../../virtual-machines/sizes-storage.md) such as **standard_l8s_v3** is required. If you plan to use Ephemeral Disk with temp SSD, a [Ev3 and Esv3-series VM](../../virtual-machines/ev3-esv3-series.md) is required.
28
+
Ephemeral Disk is only available in certain types of VMs. If you plan to use Ephemeral Disk with local NVMe, a [storage optimized VM](../../virtual-machines/sizes-storage.md) such as **standard_l8s_v3** is required. If you plan to use Ephemeral Disk with temp SSD, a [Ev3 and Esv3-series VM](../../virtual-machines/ev3-esv3-series.md) is required.
29
+
30
+
You can run the following command to get the VM type that's used with your node pool.
29
31
30
-
You can run the following command to get VM type that is used with your node pool.
31
32
```azurecli-interactive
32
33
az aks nodepool list --resource-group <resource group> --cluster-name <cluster name> --query "[].{PoolName:name, VmSize:vmSize}" -o table
33
34
```
@@ -141,6 +142,7 @@ Create a pod using [Fio](https://github.com/axboe/fio) (Flexible I/O Tester) for
141
142
1. Use your favorite text editor to create a YAML manifest file such as `code acstor-pod.yaml`.
142
143
143
144
1. Paste in the following code and save the file.
145
+
144
146
```yml
145
147
kind: Pod
146
148
apiVersion: v1
@@ -388,7 +390,6 @@ To check which persistent volume a persistent volume claim is bound to, run:
388
390
kubectl get pvc <persistent-volume-claim-name>
389
391
```
390
392
391
-
392
393
## See also
393
394
394
395
-[What is Azure Container Storage?](container-storage-introduction.md)
0 commit comments