From 7655906d8d7dd8f1ce4cc36f69d197655a13f4b0 Mon Sep 17 00:00:00 2001 From: Yuri Weinstein Date: Thu, 7 May 2015 17:12:35 -0700 Subject: [PATCH] Added a "ceph hello world" for a simple check for ceph-deploy qa suite Signed-off-by: Yuri Weinstein (cherry picked from commit 13abae186357f4e9bb40990a7a212f93ec2e1e79) Signed-off-by: Yuri Weinstein --- qa/workunits/ceph-deploy/ceph-deploy_hello_world.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 qa/workunits/ceph-deploy/ceph-deploy_hello_world.sh diff --git a/qa/workunits/ceph-deploy/ceph-deploy_hello_world.sh b/qa/workunits/ceph-deploy/ceph-deploy_hello_world.sh new file mode 100755 index 0000000000000..30e74cce5b56d --- /dev/null +++ b/qa/workunits/ceph-deploy/ceph-deploy_hello_world.sh @@ -0,0 +1,13 @@ +#!/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 -- 2.39.5