ceph/qa/workunits/ceph-tests/ceph-admin-commands.sh
Vasu Kulkarni 49f95b3d8b create the rbd pool right after install
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>
2017-09-06 18:07:54 -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