k8s-csi-s3/deploy/kubernetes/examples/pvc.yaml

16 lines
352 B
YAML
Raw Normal View History

# Dynamically provisioned PVC:
# A bucket or path inside bucket will be created automatically
# for the PV and removed when the PV will be removed
2018-07-14 08:48:22 +00:00
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: csi-s3-pvc
namespace: default
spec:
accessModes:
2021-09-14 10:38:01 +00:00
- ReadWriteMany
2018-07-14 08:48:22 +00:00
resources:
requests:
storage: 5Gi
storageClassName: csi-s3