From 330aea7caeae57b7ca0002e38816216dc31a9782 Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 17 Nov 2022 17:47:47 +0100 Subject: [PATCH] modules/cluster/deployment: fix path to glusterfs --- modules/cluster/deployment.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cluster/deployment.nix b/modules/cluster/deployment.nix index 2845d234..88de08f1 100644 --- a/modules/cluster/deployment.nix +++ b/modules/cluster/deployment.nix @@ -50,11 +50,11 @@ in tag = builtins.replaceStrings [ "/" ] [ "-" ] ( withoutLeadingSlash mountPoint ); - source = "/storage/glusterfs/microvms/${user}/${repo}/${vmName}/${withoutLeadingSlash mountPoint}"; + source = "/glusterfs/fast/microvms/${user}/${repo}/${vmName}/${withoutLeadingSlash mountPoint}"; inherit mountPoint; }) config.deployment.persistedShares; # volumes = [ { - # image = "/storage/glusterfs/microvms/${user}/${repo}/${vmName}/overlay.img"; + # image = "/glusterfs/fast/microvms/${user}/${repo}/${vmName}/overlay.img"; # mountPoint = "/"; # size = 8 * 1024; # } ];