From: Ali Masarwa Date: Wed, 5 Jun 2024 09:31:51 +0000 (+0300) Subject: RGW|BN: make http tests run on a seperate task X-Git-Tag: v20.0.0~1799^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F57894%2Fhead;p=ceph.git RGW|BN: make http tests run on a seperate task Signed-off-by: Ali Masarwa --- diff --git a/qa/suites/rgw/notifications/tasks/http/+ b/qa/suites/rgw/notifications/tasks/http/+ new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/qa/suites/rgw/notifications/tasks/http/0-install.yaml b/qa/suites/rgw/notifications/tasks/http/0-install.yaml new file mode 100644 index 000000000000..108772dcbb6f --- /dev/null +++ b/qa/suites/rgw/notifications/tasks/http/0-install.yaml @@ -0,0 +1,14 @@ +tasks: + - install: + - ceph: + - openssl_keys: + - rgw: + client.0: + client.1: + +overrides: + ceph: + conf: + global: + osd_min_pg_log_entries: 10 + osd_max_pg_log_entries: 10 diff --git a/qa/suites/rgw/notifications/tasks/http/supported-distros b/qa/suites/rgw/notifications/tasks/http/supported-distros new file mode 120000 index 000000000000..46280a42a96d --- /dev/null +++ b/qa/suites/rgw/notifications/tasks/http/supported-distros @@ -0,0 +1 @@ +../../.qa/distros/supported-random-distro$/ \ No newline at end of file diff --git a/qa/suites/rgw/notifications/tasks/http/test_http.yaml b/qa/suites/rgw/notifications/tasks/http/test_http.yaml new file mode 100644 index 000000000000..a18464f7c3d5 --- /dev/null +++ b/qa/suites/rgw/notifications/tasks/http/test_http.yaml @@ -0,0 +1,5 @@ +tasks: + - notification-tests: + client.0: + extra_attr: ["http_test"] + rgw_server: client.0 diff --git a/qa/tasks/notification_tests.py b/qa/tasks/notification_tests.py index f19ef9bc7ff3..58dbaaa14b34 100644 --- a/qa/tasks/notification_tests.py +++ b/qa/tasks/notification_tests.py @@ -220,7 +220,7 @@ def run_tests(ctx, config): for client, client_config in config.items(): (remote,) = ctx.cluster.only(client).remotes.keys() - attr = ["!kafka_test", "!amqp_test", "!amqp_ssl_test", "!kafka_security_test", "!modification_required", "!manual_test"] + attr = ["!kafka_test", "!amqp_test", "!amqp_ssl_test", "!kafka_security_test", "!modification_required", "!manual_test", "!http_test"] if 'extra_attr' in client_config: attr = client_config.get('extra_attr')