Add config parameter for NFS mount options

mike/chat-subs
HubbeKing 1 year ago committed by Hubbe
parent 17596655f6
commit 209cc6d876

@ -59,6 +59,7 @@
nfs_server: "nfs.example.com", # server IP or hostname nfs_server: "nfs.example.com", # server IP or hostname
nfs_path: "/mnt/segments", # path on server to mount nfs_path: "/mnt/segments", # path on server to mount
nfs_capacity: "1T", # storage capacity to report to k8s nfs_capacity: "1T", # storage capacity to report to k8s
nfs_mount_options: ["noatime"], # mount options to use (important for performance!)
// PVC template storage class for statefulset in postgres // PVC template storage class for statefulset in postgres
sts_storage_class_name: "longhorn", sts_storage_class_name: "longhorn",
@ -559,7 +560,7 @@
capacity: { capacity: {
storage: $.config.nfs_capacity storage: $.config.nfs_capacity
}, },
mountOptions: ["fsc", "noatime"], mountOptions: $.config.nfs_mount_options,
nfs: { nfs: {
server: $.config.nfs_server, server: $.config.nfs_server,
path: $.config.nfs_path, path: $.config.nfs_path,

Loading…
Cancel
Save