ceph/qa/workunits/ceph-deploy/ceph-deploy_hello_world.sh
Yuri Weinstein 13abae1863 Added a "ceph hello world" for a simple check for ceph-deploy qa suite
Signed-off-by: Yuri Weinstein <yuri.weinstein@inktank.com>
2015-05-07 17:12:35 -07:00

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