1
0
forked from c3d2/nix-config

Assert that ceph is not updated

This commit is contained in:
Sandro - 2023-01-17 00:38:26 +01:00
parent 198e71c908
commit 6d1ecddb5f
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,4 +1,5 @@
{ zentralwerk, hostRegistry, config, lib, ... }:
{ zentralwerk, hostRegistry, config, lib, pkgs, ... }:
let
inherit (config.networking) hostName;
@ -71,7 +72,7 @@ in {
deploy.customizationModule = ./deployment.nix;
# Ceph storage cluster configuration
storage.ceph = rec {
storage.ceph = assert pkgs.ceph.version == "16.2.10"; rec {
fsid = "a06b1061-ef09-46d6-a15f-2f8ce4d7d1bf";
mons = [ "server8" "server9" "server10" ];
mgrs = mons;