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
Copy file name to clipboardExpand all lines: articles/storage/container-storage/use-container-storage-with-local-nvme-replication.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
---
2
2
title: Use Azure Container Storage Preview with local NVMe replication
3
-
description: Configure Azure Container Storage for use with Ephemeral Disk using local NVMe on the Azure Kubernetes Service (AKS) cluster nodes. Create a storage pool with volume replication, create a persistent volume claim, and attach the persistent volume to a pod.
3
+
description: Configure Azure Container Storage for use with Ephemeral Disk using local NVMe on the Azure Kubernetes Service (AKS) cluster nodes. Create a storage pool with volume replication, create a volume, and deploy a pod.
4
4
author: khdownie
5
5
ms.service: azure-container-storage
6
6
ms.topic: how-to
7
-
ms.date: 06/26/2024
7
+
ms.date: 06/27/2024
8
8
ms.author: kendownie
9
9
ms.custom: references_regions
10
10
---
@@ -62,7 +62,7 @@ Follow these steps to create a storage pool using local NVMe with replication. A
62
62
apiVersion: containerstorage.azure.com/v1
63
63
kind: StoragePool
64
64
metadata:
65
-
name: nvme
65
+
name: ephemeraldisk-nvme
66
66
namespace: acstor
67
67
spec:
68
68
poolType:
@@ -80,10 +80,10 @@ Follow these steps to create a storage pool using local NVMe with replication. A
80
80
When storage pool creation is complete, you'll see a message like:
81
81
82
82
```output
83
-
storagepool.containerstorage.azure.com/nvme created
83
+
storagepool.containerstorage.azure.com/ephemeraldisk-nvme created
84
84
```
85
85
86
-
You can also run this command to check the status of the storage pool. Replace `<storage-pool-name>` with your storage pool **name** value. For this example, the value would be **nvme**.
86
+
You can also run this command to check the status of the storage pool. Replace `<storage-pool-name>` with your storage pool **name** value. For this example, the value would be **ephemeraldisk-nvme**.
87
87
88
88
```azurecli-interactive
89
89
kubectl describe sp <storage-pool-name> -n acstor
@@ -100,7 +100,7 @@ Run `kubectl get sc` to display the available storage classes. You should see a
0 commit comments