From: Patrick Donnelly Date: Thu, 28 May 2026 16:41:11 +0000 (-0400) Subject: qa: wire up ceph_test_mon into qa X-Git-Tag: testing/wip-pdonnell-testing-20260529.193802~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6c09c5ed76ac8fcd4527da318758e239f945ae41;p=ceph-ci.git qa: wire up ceph_test_mon into qa Oddly, I don't see these executed anywhere in teuthology. Signed-off-by: Patrick Donnelly --- diff --git a/qa/suites/rados/singleton/all/ceph-test-mon.yaml b/qa/suites/rados/singleton/all/ceph-test-mon.yaml new file mode 100644 index 00000000000..686feca5ef8 --- /dev/null +++ b/qa/suites/rados/singleton/all/ceph-test-mon.yaml @@ -0,0 +1,20 @@ +roles: +- - mon.a + - mon.b + - mon.c + - mgr.x + - osd.0 + - osd.1 + - osd.2 + - client.0 +openstack: + - volumes: # attached to each instance + count: 3 + size: 10 # GB +tasks: +- install: +- ceph: +- workunit: + clients: + client.0: + - mon/ceph_test.sh diff --git a/qa/workunits/mon/ceph_test.sh b/qa/workunits/mon/ceph_test.sh new file mode 100755 index 00000000000..6bb189129ac --- /dev/null +++ b/qa/workunits/mon/ceph_test.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +set -ex + +for t in ceph_test_mon_*; do + "$t" +done