This commit is contained in:
Sandro - 2023-06-14 23:59:26 +02:00
parent 96576c95d3
commit 42424268f4
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
4 changed files with 10 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
{
imports = [
@ -67,7 +67,8 @@
keyfile = config.sops.secrets."ceph/osd.4/keyfile".path;
deviceClass = "ssd";
} ];
skyflake.storage.ceph.package = pkgs.ceph_17_2;
# TODO: remove
skyflake.storage.ceph.package = lib.mkForce pkgs.ceph_17_2;
system.stateVersion = "21.11"; # Did you read the comment?
}

View File

@ -57,6 +57,7 @@
keyfile = config.sops.secrets."ceph/osd.6/keyfile".path;
deviceClass = "ssd";
} ];
# TODO: remove
skyflake.storage.ceph.package = lib.mkForce pkgs.ceph_16_2;
system.stateVersion = "22.11";

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
{
imports = [
@ -89,7 +89,8 @@
keyfile = config.sops.secrets."ceph/osd.2/keyfile".path;
deviceClass = "hdd";
} ];
skyflake.storage.ceph.package = pkgs.ceph_17_2;
# TODO: remove
skyflake.storage.ceph.package = lib.mkForce pkgs.ceph_17_2;
system.stateVersion = "22.11";
}

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
{
imports = [
@ -58,7 +58,8 @@
keyfile = config.sops.secrets."ceph/osd.3/keyfile".path;
deviceClass = "hdd";
} ];
skyflake.storage.ceph.package = pkgs.ceph_17_2;
# TODO: remove
skyflake.storage.ceph.package = lib.mkForce pkgs.ceph_17_2;
system.stateVersion = "21.11";