nomad to the max

This commit is contained in:
2023-09-19 19:49:36 +02:00
commit e6d03c8589
15 changed files with 572 additions and 0 deletions

18
test/nfs-volume.hcl Normal file
View File

@@ -0,0 +1,18 @@
type = "csi"
id = "test"
name = "test"
plugin_id = "nfsofficial"
external_id = "testid"
capability {
access_mode = "multi-node-multi-writer"
attachment_mode = "file-system"
}
context {
server = "192.168.10.3"
share = "/srv/pub/Music"
mountPermissions = "0"
}
mount_options {
fs_type = "nfs"
mount_flags = [ "timeo=30", "intr", "vers=3", "_netdev" , "nolock" ]
}