Skip to content

Commit f7b478f

Browse files
authored
Update use-container-storage-with-temp-ssd.md
1 parent b4ab79c commit f7b478f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/storage/container-storage/use-container-storage-with-temp-ssd.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Configure Azure Container Storage for use with Ephemeral Disk using
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
---
@@ -63,7 +63,7 @@ Follow these steps to create a storage pool using temp SSD.
6363
apiVersion: containerstorage.azure.com/v1
6464
kind: StoragePool
6565
metadata:
66-
name: ephemeraldisk
66+
name: ephemeraldisk-temp
6767
namespace: acstor
6868
spec:
6969
poolType:
@@ -80,10 +80,10 @@ Follow these steps to create a storage pool using temp SSD.
8080
When storage pool creation is complete, you'll see a message like:
8181

8282
```output
83-
storagepool.containerstorage.azure.com/ephemeraldisk created
83+
storagepool.containerstorage.azure.com/ephemeraldisk-temp 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 **ephemeraldisk**.
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-temp**.
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-temp containerstorage.csi.azure.com Delete WaitForFirstConsumer true 2m27s
104104
```
105105

106106
> [!IMPORTANT]
@@ -140,7 +140,7 @@ Create a pod using [Fio](https://github.com/axboe/fio) (Flexible I/O Tester) for
140140
type: my-ephemeral-volume
141141
spec:
142142
accessModes: [ "ReadWriteOnce" ]
143-
storageClassName: "acstor-ephemeraldisk-nvme" # replace with the name of your storage class if different
143+
storageClassName: acstor-ephemeraldisk-temp # replace with the name of your storage class if different
144144
resources:
145145
requests:
146146
storage: 1Gi

0 commit comments

Comments
 (0)