mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 03:26:13 +01:00
31 lines
502 B
Nix
31 lines
502 B
Nix
|
{}:
|
||
|
{ volume_name
|
||
|
, access_mode
|
||
|
, server
|
||
|
, share
|
||
|
, mount_flags ? []
|
||
|
}:
|
||
|
{
|
||
|
type = "csi";
|
||
|
plugin_id = "org.democratic-csi.nfs";
|
||
|
volume_id = volume_name;
|
||
|
name = volume_name;
|
||
|
external_id = volume_name;
|
||
|
|
||
|
capability = {
|
||
|
inherit access_mode;
|
||
|
attachment_mode = "file-system";
|
||
|
};
|
||
|
|
||
|
context = {
|
||
|
inherit server share;
|
||
|
node_attach_driver = "nfs";
|
||
|
provisioner_driver = "node-manual";
|
||
|
};
|
||
|
|
||
|
mount_options = {
|
||
|
fs_type = "nfs";
|
||
|
inherit mount_flags;
|
||
|
};
|
||
|
}
|