From 2c06c1e73c907304d7f288c647b9caebb8deb158 Mon Sep 17 00:00:00 2001 From: Jonathan Davies Date: Mon, 24 Jun 2024 22:47:28 +0100 Subject: [PATCH] nixos/graylog: Increased disk size, fixes preflight check: Preflight check failed with error: Journal directory has not enough free space (3412 MB) available. You need to provide additional 1707 MB to contain 'message_journal_max_size = 5120 MB' --- nixos/tests/graylog.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/graylog.nix b/nixos/tests/graylog.nix index cb9e5f8c7ffb..9d19dcf028eb 100644 --- a/nixos/tests/graylog.nix +++ b/nixos/tests/graylog.nix @@ -4,7 +4,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: { nodes.machine = { pkgs, ... }: { virtualisation.memorySize = 4096; - virtualisation.diskSize = 4096; + virtualisation.diskSize = 1024 * 6; services.mongodb.enable = true; services.elasticsearch.enable = true;