ceph/qa/workunits/ceph-tests/ceph-admin-commands.sh
Vasu Kulkarni 71e0922cfa create rbd pool since its not created by default anymore
Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
2017-07-07 09:23:43 -07:00

15 lines
204 B
Bash
Executable File

#!/bin/sh -e
#check ceph health
ceph -s
#list pools
rados lspools
#lisr rbd images
ceph osd pool create rbd 128 128
rbd ls
#check that the monitors work
ceph osd set nodown
ceph osd unset nodown
exit 0