Mount the glusterfs.

This commit is contained in:
2023-07-17 12:55:18 +01:00
parent afca76d949
commit 9a4d00bfd3
2 changed files with 11 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
imports = [
./consul.nix
./glusterfs.nix
./glusterfs-client.nix
./impermanence.nix
./nomad.nix
./sshd.nix

View File

@@ -0,0 +1,10 @@
{
fileSystems."/data/compute" = {
device = "c1:/compute";
fsType = "glusterfs";
options = [
"backup-volfile-servers=c2:c3"
"_netdev"
];
};
}