Skip to content

Commit 4f75d4b

Browse files
committed
Updates.
1 parent cbd2586 commit 4f75d4b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/storage/elastic-san/elastic-san-connect-aks.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to connect to an Azure Elastic SAN (preview) volume an Az
44
author: roygara
55
ms.service: storage
66
ms.topic: how-to
7-
ms.date: 03/06/2023
7+
ms.date: 03/07/2023
88
ms.author: rogarana
99
ms.subservice: elastic-san
1010
---
@@ -110,7 +110,7 @@ Once you've retrieved your volume's information, you need to create a few yml fi
110110

111111
### Storageclass
112112

113-
Create a storageclass.yml file, Use the following example to create a storageclass.yml file. This file defines your persistent volume's storageclass.
113+
Use the following example to create a storageclass.yml file. This file defines your persistent volume's storageclass.
114114

115115
```yml
116116
apiVersion: storage.k8s.io/v1
@@ -120,7 +120,7 @@ metadata:
120120
provisioner: manual
121121
```
122122
123-
### Presistent volume
123+
### Persistent volume
124124
125125
After you've created the storage class, create a *pv.yml* file. This file defines your [persistent volume](../../aks/concepts-storage.md#persistent-volumes). In the following example, replace `yourTargetPortal`, `yourTargetPortalPort`, and `yourIQN` with the values you collected earlier, then use the example to create a *pv.yml* file. If you need more than 1 gibibyte of storage and have it available, replace `1Gi` with the amount of storage you require.
126126

@@ -151,7 +151,7 @@ spec:
151151
sessionCHAPAuth: "false"
152152
```
153153

154-
After creating the file, create the persistent volume with the following command:
154+
After creating the *pv.yml* file, create a persistent volume with the following command:
155155

156156
```bash
157157
kubectl apply -f pathtoyourfile/pv.yaml
@@ -193,7 +193,7 @@ kubectl get pvc pathtoyourfile
193193
```
194194

195195

196-
Finally, create a [pod manifest](../../aks/concepts-clusters-workloads.md#pods). The following is an example of what your *pod.yml* file might look like. You can use it to make your own pod manifest, replace the `name`, `image`, and `mountPath` values with your own:
196+
Finally, create a [pod manifest](../../aks/concepts-clusters-workloads.md#pods). The following is an example of what your *pod.yml* file might look like. You can use it to make your own pod manifest, replace the values for `name`, `image`, and `mountPath` with your own:
197197

198198
```yml
199199
apiVersion: v1
@@ -217,13 +217,13 @@ spec:
217217
claimName: iscsiplugin-pvc
218218
```
219219

220-
After creating the *pod.yml* file, create the pod.
220+
After creating the *pod.yml* file, create a pod.
221221

222222
```bash
223223
kubectl apply -f pathtoyourfile/pod.yaml
224224
```
225225

226-
To verify your Pod was created run the following command:
226+
To verify your Pod was created, run the following command:
227227

228228
```bash
229229
kubectl get pods

0 commit comments

Comments
 (0)