nixos/tests/prometheus-2.nix: increase diskSize of the store machine

This is to fix the following error in the test on aarch64-linux:

store# [  126.911144] thanos[739]: level=error ts=2019-06-16T14:00:26.59870538Z caller=main.go:182 msg="running command failed" err="error executing compaction: first pass of downsampling failed: create dir: mkdir /var/lib/thanos-compact/downsample: no space left on device"
store# [  126.942655] systemd[1]: thanos-compact.service: Main process exited, code=exited, status=1/FAILURE
This commit is contained in:
Bas van Dijk 2019-06-16 16:22:01 +02:00
parent e753322c48
commit 6a59dc35f6

View file

@ -132,6 +132,7 @@ in import ./make-test.nix {
};
store = { pkgs, ... }: {
virtualisation.diskSize = 2 * 1024;
environment.systemPackages = with pkgs; [ jq thanos ];
services.thanos.store = {
enable = true;