2021-07-26 21:04:02 +00:00
|
|
|
# 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
|