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: content/en/docs/concepts/storage/storage-classes.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -296,6 +296,27 @@ allowedTopologies:
296
296
values:
297
297
- us-east-2c
298
298
```
299
+
### AWS EFS
300
+
301
+
To configure AWS EFS storage, you can use the out-of-tree [AWS_EFS_CSI_DRIVER](https://github.com/kubernetes-sigs/aws-efs-csi-driver).
302
+
303
+
```yaml
304
+
kind: StorageClass
305
+
apiVersion: storage.k8s.io/v1
306
+
metadata:
307
+
name: efs-sc
308
+
provisioner: efs.csi.aws.com
309
+
parameters:
310
+
provisioningMode: efs-ap
311
+
fileSystemId: fs-92107410
312
+
directoryPerms: "700"
313
+
```
314
+
315
+
- `provisioningMode`: The type of volume to be provisioned by Amazon EFS. Currently, only access point based provisioning is supported (`efs-ap`).
316
+
- `fileSystemId`: The file system under which the access point is created.
317
+
- `directoryPerms`: The directory permissions of the root directory created by the access point.
318
+
319
+
For more details, refer to the [AWS_EFS_CSI_Driver Dynamic Provisioning](https://github.com/kubernetes-sigs/aws-efs-csi-driver/blob/master/examples/kubernetes/dynamic_provisioning/README.md) documentation.
0 commit comments