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 10:48:22 +02:00
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: csi-s3-pvc
namespace: default
spec:
accessModes:
2018-07-16 22:27:45 +02:00
- ReadWriteOnce
2018-07-14 10:48:22 +02:00
resources:
requests:
storage: 5Gi
storageClassName: csi-s3