2017-05-16 18:57:10 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
set -u
|
|
|
|
|
|
|
|
# number of osds = 10
|
|
|
|
crushtool -o crushmap --build --num_osds 10 host straw 2 rack straw 2 row straw 2 root straw 0
|
|
|
|
ceph osd setcrushmap -i crushmap
|
|
|
|
ceph osd tree
|
|
|
|
|
2017-05-22 14:09:19 +00:00
|
|
|
wait_for_healthy() {
|
|
|
|
while ceph health | grep down
|
|
|
|
do
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2017-05-16 18:57:10 +00:00
|
|
|
test_mark_two_osds_same_host_down() {
|
2017-05-22 14:09:19 +00:00
|
|
|
ceph osd set noup
|
2017-05-16 18:57:10 +00:00
|
|
|
ceph osd down osd.0 osd.1
|
|
|
|
ceph health detail
|
2017-05-22 14:09:19 +00:00
|
|
|
ceph health | grep "1 host"
|
|
|
|
ceph health | grep "2 osds"
|
2017-05-16 18:57:10 +00:00
|
|
|
ceph health detail | grep "osd.0"
|
|
|
|
ceph health detail | grep "osd.1"
|
2017-05-22 14:09:19 +00:00
|
|
|
ceph osd unset noup
|
|
|
|
wait_for_healthy
|
2017-05-16 18:57:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test_mark_two_osds_same_rack_down() {
|
2017-05-22 14:09:19 +00:00
|
|
|
ceph osd set noup
|
2017-05-16 18:57:10 +00:00
|
|
|
ceph osd down osd.8 osd.9
|
|
|
|
ceph health detail
|
2017-05-22 14:09:19 +00:00
|
|
|
ceph health | grep "1 host"
|
|
|
|
ceph health | grep "1 rack"
|
|
|
|
ceph health | grep "1 row"
|
|
|
|
ceph health | grep "2 osds"
|
2017-05-16 18:57:10 +00:00
|
|
|
ceph health detail | grep "osd.8"
|
|
|
|
ceph health detail | grep "osd.9"
|
2017-05-22 14:09:19 +00:00
|
|
|
ceph osd unset noup
|
|
|
|
wait_for_healthy
|
2017-05-16 18:57:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test_mark_all_osds_down() {
|
2017-05-22 14:09:19 +00:00
|
|
|
ceph osd set noup
|
2017-05-16 18:57:10 +00:00
|
|
|
ceph osd down `ceph osd ls`
|
|
|
|
ceph health detail
|
2017-05-22 14:09:19 +00:00
|
|
|
ceph health | grep "2 rows"
|
|
|
|
ceph health | grep "3 racks"
|
|
|
|
ceph health | grep "5 hosts"
|
|
|
|
ceph health | grep "10 osds"
|
|
|
|
ceph osd unset noup
|
|
|
|
wait_for_healthy
|
2017-05-16 18:57:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test_mark_two_osds_same_host_down
|
|
|
|
test_mark_two_osds_same_rack_down
|
|
|
|
test_mark_all_osds_down
|
|
|
|
|
|
|
|
exit 0
|