diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /src/test/cli/crushtool/rules.txt | |
parent | Initial commit. (diff) | |
download | ceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/cli/crushtool/rules.txt')
-rw-r--r-- | src/test/cli/crushtool/rules.txt | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/test/cli/crushtool/rules.txt b/src/test/cli/crushtool/rules.txt new file mode 100644 index 000000000..4844cf891 --- /dev/null +++ b/src/test/cli/crushtool/rules.txt @@ -0,0 +1,54 @@ +# begin crush map + +# devices +device 0 osd.0 class ssd +device 1 osd.1 class ssd +device 2 osd.2 class ssd +device 3 osd.3 class hdd +device 4 osd.4 class hdd +device 5 osd.5 class hdd + +# types +type 0 osd +type 1 host +type 2 root + +# buckets +host foo { + id -3 + alg straw2 + hash 0 + item osd.0 weight 1.00000 + item osd.1 weight 1.00000 + item osd.2 weight 1.00000 +} + +host bar { + id -2 + alg straw2 + hash 0 + item osd.3 weight 1.00000 + item osd.4 weight 1.00000 + item osd.5 weight 1.00000 +} + +root default { + id -1 + alg straw2 + hash 0 + item foo weight 3.00000 + item bar weight 3.00000 +} + +# rules +rule data { + id 0 + type replicated + min_size 1 + max_size 10 + step take default + step chooseleaf firstn 0 type host + step emit +} + +# end crush map |