k8s-csi-s3/deploy/kubernetes/examples/pvc.yaml
Vitaliy Filippov f889300e78 Example too
2021-09-14 13:38:01 +03:00

15 lines
352 B
YAML

# Dynamically provisioned PVC:
# A bucket or path inside bucket will be created automatically
# for the PV and removed when the PV will be removed
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: csi-s3-pvc
namespace: default
spec:
accessModes:
- ReadWriteMany
resources:
requests:
storage: 5Gi
storageClassName: csi-s3