mirror of
https://github.com/ceph/ceph
synced 2024-12-20 10:23:24 +00:00
71e0922cfa
Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
15 lines
204 B
Bash
Executable File
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
|