I've recently started using NFS volumes for my clusters on-prem. This is the simplest and best solution for me, however it seems pretty limited in regards to the actual mounts options.
Is there anyway to set mount options on the node/cluster in the volume.yml files?
- NFSv3
- NFSv4/4.1
- lookupcache
- noatime
- rsize,wsize
I have application that requires a specific version and also these mount options for performance.
apiVersion: v1
kind: PersistentVolume
metadata:
name: nfs
spec:
capacity:
storage: 1Mi
accessModes:
- ReadWriteMany
nfs:
# FIXME: use the right IP
server: 10.244.1.4
path: "/"
Is there anyway to add mount flags here?