ceph.tests: Rename FileStore tests to *-deprecated-filestore

Makes clear that there's not much point contributing new features to those.
This commit is contained in:
Niklas Hambüchen
2026-06-18 10:32:51 +00:00
parent 1c167cd5b4
commit d8d39bd436
4 changed files with 11 additions and 6 deletions
+6 -2
View File
@@ -330,8 +330,8 @@ in
};
castopod = runTest ./castopod.nix;
centrifugo = runTest ./centrifugo.nix;
ceph-multi-node = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./ceph-multi-node.nix;
ceph-single-node = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./ceph-single-node.nix;
ceph-multi-node-deprecated-filestore =
runTestOn [ "aarch64-linux" "x86_64-linux" ] ./ceph-multi-node-deprecated-filestore.nix;
ceph-single-node-bluestore = runTestOn [
"aarch64-linux"
"x86_64-linux"
@@ -340,6 +340,10 @@ in
"aarch64-linux"
"x86_64-linux"
] ./ceph-single-node-bluestore-dmcrypt.nix;
ceph-single-node-deprecated-filestore = runTestOn [
"aarch64-linux"
"x86_64-linux"
] ./ceph-single-node-deprecated-filestore.nix;
certmgr = import ./certmgr.nix { inherit pkgs runTest; };
cfssl = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./cfssl.nix;
cgit = runTest ./cgit.nix;
@@ -1,3 +1,4 @@
# Tests the legacy FileStore OSD backend.
{ lib, ... }:
let
cfg = {
@@ -262,7 +263,7 @@ let
'';
in
{
name = "basic-multi-node-ceph-cluster";
name = "basic-multi-node-ceph-cluster-deprecated-filestore";
meta = with lib.maintainers; {
maintainers = [ lejonet ];
};
@@ -269,7 +269,7 @@ let
'';
in
{
name = "basic-single-node-ceph-cluster";
name = "basic-single-node-ceph-cluster-deprecated-filestore";
meta = with lib.maintainers; {
maintainers = [
lejonet
+2 -2
View File
@@ -393,10 +393,10 @@ stdenv.mkDerivation {
pythonEnv = ceph-python-env;
tests = {
inherit (nixosTests)
ceph-multi-node
ceph-single-node
ceph-multi-node-deprecated-filestore
ceph-single-node-bluestore
ceph-single-node-bluestore-dmcrypt
ceph-single-node-deprecated-filestore
;
};
};