From 1972904fc6ede120add8f035ab964be174436292 Mon Sep 17 00:00:00 2001 From: Daniel Kuehn Date: Sat, 9 Nov 2019 13:16:56 +0100 Subject: [PATCH] nixos/ceph: Clarify comments in tests and add source reference for the bootstraping method --- nixos/tests/ceph-multi-node.nix | 4 ++++ nixos/tests/ceph-single-node.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/nixos/tests/ceph-multi-node.nix b/nixos/tests/ceph-multi-node.nix index 09a81ae25e3d..ed493d6a1b34 100644 --- a/nixos/tests/ceph-multi-node.nix +++ b/nixos/tests/ceph-multi-node.nix @@ -104,6 +104,10 @@ let }; }; }; + # Following deployment is based on the manual deployment described here: + # https://docs.ceph.com/docs/master/install/manual-deployment/ + # For other ways to deploy a ceph cluster, look at the documentation at + # https://docs.ceph.com/docs/master/ testscript = { ... }: '' startAll; diff --git a/nixos/tests/ceph-single-node.nix b/nixos/tests/ceph-single-node.nix index 3278d76769a4..041fbd7e8e64 100644 --- a/nixos/tests/ceph-single-node.nix +++ b/nixos/tests/ceph-single-node.nix @@ -69,6 +69,10 @@ let }; }; }; + # Following deployment is based on the manual deployment described here: + # https://docs.ceph.com/docs/master/install/manual-deployment/ + # For other ways to deploy a ceph cluster, look at the documentation at + # https://docs.ceph.com/docs/master/ testscript = { ... }: '' startAll;