Skip to content

Commit aaa6e60

Browse files
Merge pull request #279474 from khdownie/kendownie062724
standardize name field
2 parents a12b776 + c2cb835 commit aaa6e60

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/storage/container-storage/use-container-storage-with-local-nvme-replication.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
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.
44
author: khdownie
55
ms.service: azure-container-storage
66
ms.topic: how-to
7-
ms.date: 06/26/2024
7+
ms.date: 06/27/2024
88
ms.author: kendownie
99
ms.custom: references_regions
1010
---
@@ -62,7 +62,7 @@ Follow these steps to create a storage pool using local NVMe with replication. A
6262
apiVersion: containerstorage.azure.com/v1
6363
kind: StoragePool
6464
metadata:
65-
name: nvme
65+
name: ephemeraldisk-nvme
6666
namespace: acstor
6767
spec:
6868
poolType:
@@ -80,10 +80,10 @@ Follow these steps to create a storage pool using local NVMe with replication. A
8080
When storage pool creation is complete, you'll see a message like:
8181

8282
```output
83-
storagepool.containerstorage.azure.com/nvme created
83+
storagepool.containerstorage.azure.com/ephemeraldisk-nvme created
8484
```
8585

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**.
8787

8888
```azurecli-interactive
8989
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
100100
```output
101101
$ kubectl get sc | grep "^acstor-"
102102
acstor-azuredisk-internal disk.csi.azure.com Retain WaitForFirstConsumer true 65m
103-
acstor-ephemeraldisk containerstorage.csi.azure.com Delete WaitForFirstConsumer true 2m27s
103+
acstor-ephemeraldisk-nvme containerstorage.csi.azure.com Delete WaitForFirstConsumer true 2m27s
104104
```
105105

106106
> [!IMPORTANT]

0 commit comments

Comments
 (0)