14 lines
748 B
YAML
14 lines
748 B
YAML
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: nfs-client
|
|
annotations:
|
|
storageclass.kubernetes.io/is-default-class: "true"
|
|
provisioner: exa.csi.ddn.com
|
|
parameters:
|
|
exaMountUid: "1001" # Uid which will be used to access the volume in pod. Should be synced between EXA server and clients.
|
|
bindMount: "true" # Determines, whether volume will bind mounted or as a separate lustre mount.
|
|
exaFS: "10.140.224.175@tcp:10.140.224.176@tcp:10.140.224.177@tcp:10.140.224.178@tcp:/GSDATA1" # Overrides exaFS value from config. Use this to support multiple EXA filesystems.
|
|
mountPoint: /data # Overrides mountPoint value from config. Use this to support multiple EXA filesystems.
|
|
mountOptions: ro,noflock
|