mirror of
https://github.com/ceph/ceph
synced 2024-12-30 07:23:11 +00:00
49f95b3d8b
rbd pool should exist for many rbd tests to work properly, create the pool right after install is successful. Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
14 lines
171 B
Bash
Executable File
14 lines
171 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
#check ceph health
|
|
ceph -s
|
|
#list pools
|
|
rados lspools
|
|
#lisr rbd images
|
|
rbd ls
|
|
#check that the monitors work
|
|
ceph osd set nodown
|
|
ceph osd unset nodown
|
|
|
|
exit 0
|