diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2024-12-09 16:31:24 +0100 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2024-12-10 22:02:34 +0100 |
commit | 151364498361acb4f7ffeabb714ff62f46a61960 (patch) | |
tree | 5dae0ce8a685e3d55f947948e697f9b877dfa217 /qa | |
parent | qa/suites/upgrade/reef-x: ignore more POOL_FULL variants (diff) | |
download | ceph-151364498361acb4f7ffeabb714ff62f46a61960.tar.xz ceph-151364498361acb4f7ffeabb714ff62f46a61960.zip |
qa/suites/upgrade/*-x: ignore more POOL_APP_NOT_ENABLED variants
Cover warnings like
[WRN] Health detail: HEALTH_WARN 1 pool(s) do not have an application enabled" in cluster log
[WRN] application not enabled on pool 'cephfs_metadata'" in cluster log
[WRN] use 'ceph osd pool application enable <pool-name> <app-name>', where <app-name> is 'cephfs', 'rbd', 'rgw', or freeform for custom applications." in cluster log
and also the non-parenthesized form.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'qa')
4 files changed, 16 insertions, 4 deletions
diff --git a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml index a0a5904c0a5..62fb6427f72 100644 --- a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml @@ -32,7 +32,10 @@ overrides: osd: osd shutdown pgref assert: true log-ignorelist: - - \(POOL_APP_NOT_ENABLED\) + - do not have an application enabled + - application not enabled + - or freeform for custom applications + - POOL_APP_NOT_ENABLED - is down - OSD_DOWN - mons down diff --git a/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml b/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml index a59e703c671..5641471629e 100644 --- a/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml @@ -1,7 +1,10 @@ overrides: ceph: log-ignorelist: - - \(POOL_APP_NOT_ENABLED\) + - do not have an application enabled + - application not enabled + - or freeform for custom applications + - POOL_APP_NOT_ENABLED - is down - OSD_DOWN - mons down diff --git a/qa/suites/upgrade/reef-x/parallel/0-start.yaml b/qa/suites/upgrade/reef-x/parallel/0-start.yaml index a0a5904c0a5..62fb6427f72 100644 --- a/qa/suites/upgrade/reef-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/reef-x/parallel/0-start.yaml @@ -32,7 +32,10 @@ overrides: osd: osd shutdown pgref assert: true log-ignorelist: - - \(POOL_APP_NOT_ENABLED\) + - do not have an application enabled + - application not enabled + - or freeform for custom applications + - POOL_APP_NOT_ENABLED - is down - OSD_DOWN - mons down diff --git a/qa/suites/upgrade/reef-x/stress-split/1-start.yaml b/qa/suites/upgrade/reef-x/stress-split/1-start.yaml index e805c1b8bee..59ccfe2cd02 100644 --- a/qa/suites/upgrade/reef-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/reef-x/stress-split/1-start.yaml @@ -1,7 +1,10 @@ overrides: ceph: log-ignorelist: - - \(POOL_APP_NOT_ENABLED\) + - do not have an application enabled + - application not enabled + - or freeform for custom applications + - POOL_APP_NOT_ENABLED - is down - OSD_DOWN - mons down |