19 lines
551 B
YAML
19 lines
551 B
YAML
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: grafana-pvc-pv
|
|
labels:
|
|
name: grafana-pvc-pv
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
capacity:
|
|
storage: 10Gi
|
|
csi:
|
|
driver: exa.csi.ddn.com
|
|
volumeHandle: exa1:/grafana
|
|
volumeAttributes: # volumeAttributes are the alternative of storageClass params for static (precreated) volumes.
|
|
# mountOptions: ro, noflock # list of options for `mount` command
|
|
bindMount: "false" # Determines, whether volume will bind mounted or as a separate lustre mount.
|
|
|