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/elastic-san/elastic-san-connect-aks.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Learn how to connect to an Azure Elastic SAN (preview) volume an Az
4
4
author: roygara
5
5
ms.service: storage
6
6
ms.topic: how-to
7
-
ms.date: 03/06/2023
7
+
ms.date: 03/07/2023
8
8
ms.author: rogarana
9
9
ms.subservice: elastic-san
10
10
---
@@ -110,7 +110,7 @@ Once you've retrieved your volume's information, you need to create a few yml fi
110
110
111
111
### Storageclass
112
112
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.
114
114
115
115
```yml
116
116
apiVersion: storage.k8s.io/v1
@@ -120,7 +120,7 @@ metadata:
120
120
provisioner: manual
121
121
```
122
122
123
-
### Presistent volume
123
+
### Persistent volume
124
124
125
125
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.
126
126
@@ -151,7 +151,7 @@ spec:
151
151
sessionCHAPAuth: "false"
152
152
```
153
153
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:
155
155
156
156
```bash
157
157
kubectl apply -f pathtoyourfile/pv.yaml
@@ -193,7 +193,7 @@ kubectl get pvc pathtoyourfile
193
193
```
194
194
195
195
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:
197
197
198
198
```yml
199
199
apiVersion: v1
@@ -217,13 +217,13 @@ spec:
217
217
claimName: iscsiplugin-pvc
218
218
```
219
219
220
-
After creating the *pod.yml* file, create the pod.
220
+
After creating the *pod.yml* file, create a pod.
221
221
222
222
```bash
223
223
kubectl apply -f pathtoyourfile/pod.yaml
224
224
```
225
225
226
-
To verify your Pod was created run the following command:
226
+
To verify your Pod was created, run the following command:
0 commit comments