2014-03-05 20:52:08 +00:00
|
|
|
#!/bin/bash -x
|
2013-01-30 09:04:54 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2014-03-05 20:52:08 +00:00
|
|
|
function expect_false()
|
|
|
|
{
|
|
|
|
set -x
|
|
|
|
if "$@"; then return 1; else return 0; fi
|
|
|
|
}
|
|
|
|
|
2013-01-30 09:04:54 +00:00
|
|
|
ceph osd crush dump
|
2013-03-22 19:32:47 +00:00
|
|
|
|
|
|
|
# rules
|
2013-01-30 09:04:54 +00:00
|
|
|
ceph osd crush rule dump
|
|
|
|
ceph osd crush rule ls
|
|
|
|
ceph osd crush rule list
|
|
|
|
|
|
|
|
ceph osd crush rule create-simple foo default host
|
|
|
|
ceph osd crush rule create-simple foo default host
|
|
|
|
ceph osd crush rule create-simple bar default host
|
|
|
|
|
|
|
|
ceph osd crush rule ls | grep foo
|
|
|
|
|
|
|
|
ceph osd crush rule rm foo
|
|
|
|
ceph osd crush rule rm foo # idempotent
|
|
|
|
ceph osd crush rule rm bar
|
|
|
|
|
|
|
|
# can't delete in-use rules, tho:
|
2014-03-05 20:52:08 +00:00
|
|
|
expect_false ceph osd crush rule rm replicated_ruleset
|
2013-01-30 09:04:54 +00:00
|
|
|
|
2013-03-22 19:32:47 +00:00
|
|
|
# build a simple map
|
2014-03-05 21:15:58 +00:00
|
|
|
expect_false ceph osd crush add-bucket foo osd
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush add-bucket foo root
|
|
|
|
o1=`ceph osd create`
|
|
|
|
o2=`ceph osd create`
|
|
|
|
ceph osd crush add $o1 1 host=host1 root=foo
|
2013-06-13 21:01:01 +00:00
|
|
|
ceph osd crush add $o1 1 host=host1 root=foo # idemptoent
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush add $o2 1 host=host2 root=foo
|
2013-06-13 21:01:01 +00:00
|
|
|
ceph osd crush add $o2 1 host=host2 root=foo # idempotent
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush add-bucket bar root
|
2013-06-13 21:01:01 +00:00
|
|
|
ceph osd crush add-bucket bar root # idempotent
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush link host1 root=bar
|
2013-06-13 21:01:01 +00:00
|
|
|
ceph osd crush link host1 root=bar # idempotent
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush link host2 root=bar
|
2013-06-13 21:01:01 +00:00
|
|
|
ceph osd crush link host2 root=bar # idempotent
|
2013-03-22 19:32:47 +00:00
|
|
|
|
|
|
|
ceph osd tree | grep -c osd.$o1 | grep -q 2
|
|
|
|
ceph osd tree | grep -c host1 | grep -q 2
|
|
|
|
ceph osd tree | grep -c osd.$o2 | grep -q 2
|
|
|
|
ceph osd tree | grep -c host2 | grep -q 2
|
2014-03-05 20:52:08 +00:00
|
|
|
expect_false ceph osd crush rm host1 foo # not empty
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush unlink host1 foo
|
2013-04-03 22:45:34 +00:00
|
|
|
ceph osd crush unlink host1 foo
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd tree | grep -c host1 | grep -q 1
|
|
|
|
|
2014-03-05 20:52:08 +00:00
|
|
|
expect_false ceph osd crush rm foo # not empty
|
|
|
|
expect_false ceph osd crush rm bar # not empty
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush unlink host1 bar
|
|
|
|
ceph osd tree | grep -c host1 | grep -q 1 # now an orphan
|
2013-03-27 05:47:11 +00:00
|
|
|
ceph osd crush rm osd.$o1 host1
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush rm host1
|
|
|
|
ceph osd tree | grep -c host1 | grep -q 0
|
|
|
|
|
2014-03-05 20:52:08 +00:00
|
|
|
expect_false ceph osd crush rm bar # not empty
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush unlink host2
|
2015-05-12 23:37:56 +00:00
|
|
|
|
|
|
|
# reference foo and bar with a rule
|
|
|
|
ceph osd crush rule create-simple foo-rule foo host firstn
|
|
|
|
expect_false ceph osd crush rm foo
|
|
|
|
ceph osd crush rule rm foo-rule
|
|
|
|
|
2013-03-22 19:32:47 +00:00
|
|
|
ceph osd crush rm bar
|
|
|
|
ceph osd crush rm foo
|
|
|
|
ceph osd crush rm osd.$o2 host2
|
|
|
|
ceph osd crush rm host2
|
2013-03-27 05:47:11 +00:00
|
|
|
|
2017-01-18 23:02:54 +00:00
|
|
|
ceph osd crush add-bucket foo host
|
|
|
|
ceph osd crush move foo root=default rack=localrack
|
|
|
|
|
|
|
|
ceph osd crush create-or-move osd.$o1 1.0 root=default
|
|
|
|
ceph osd crush move osd.$o1 host=foo
|
|
|
|
ceph osd find osd.$o1 | grep host | grep foo
|
|
|
|
|
2013-04-03 22:45:34 +00:00
|
|
|
ceph osd crush rm osd.$o1
|
|
|
|
ceph osd crush rm osd.$o2
|
2013-03-22 19:32:47 +00:00
|
|
|
|
2013-09-09 23:20:41 +00:00
|
|
|
ceph osd crush rm foo
|
|
|
|
|
2013-09-24 22:26:03 +00:00
|
|
|
# test reweight
|
|
|
|
o3=`ceph osd create`
|
2013-09-25 17:10:21 +00:00
|
|
|
ceph osd crush add $o3 123 root=default
|
2013-09-24 22:26:03 +00:00
|
|
|
ceph osd tree | grep osd.$o3 | grep 123
|
|
|
|
ceph osd crush reweight osd.$o3 113
|
|
|
|
ceph osd tree | grep osd.$o3 | grep 113
|
|
|
|
ceph osd crush rm osd.$o3
|
|
|
|
ceph osd rm osd.$o3
|
|
|
|
|
2014-05-25 21:02:16 +00:00
|
|
|
# test reweight-subtree
|
|
|
|
o4=`ceph osd create`
|
|
|
|
o5=`ceph osd create`
|
|
|
|
ceph osd crush add $o4 123 root=default host=foobaz
|
|
|
|
ceph osd crush add $o5 123 root=default host=foobaz
|
|
|
|
ceph osd tree | grep osd.$o4 | grep 123
|
|
|
|
ceph osd tree | grep osd.$o5 | grep 123
|
|
|
|
ceph osd crush reweight-subtree foobaz 155
|
|
|
|
ceph osd tree | grep osd.$o4 | grep 155
|
|
|
|
ceph osd tree | grep osd.$o5 | grep 155
|
|
|
|
ceph osd crush rm osd.$o4
|
|
|
|
ceph osd crush rm osd.$o5
|
|
|
|
ceph osd rm osd.$o4
|
|
|
|
ceph osd rm osd.$o5
|
|
|
|
|
2013-01-30 09:04:54 +00:00
|
|
|
echo OK
|