From bb5893f15a861958c1b10f8dce70da17a9b152f6 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Thu, 5 Dec 2024 21:33:32 +0100 Subject: [PATCH 1/8] qa/suites/upgrade/reef-x: sync log-ignorelist with quincy-x Daemons are terminated by cephadm during the upgrade, so health checks like OSD_DOWN must be ignored. Since there shouldn't be any fundamental difference between upgrading from quincy and upgrading from reef, make quincy-x and reef-x ignorelists the same. Fixes: https://tracker.ceph.com/issues/69135 Signed-off-by: Ilya Dryomov --- qa/suites/upgrade/reef-x/parallel/0-start.yaml | 11 ++++++++++- qa/suites/upgrade/reef-x/stress-split/1-start.yaml | 6 ++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/qa/suites/upgrade/reef-x/parallel/0-start.yaml b/qa/suites/upgrade/reef-x/parallel/0-start.yaml index 146bd57960dad..40fbcefe7280d 100644 --- a/qa/suites/upgrade/reef-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/reef-x/parallel/0-start.yaml @@ -32,4 +32,13 @@ overrides: osd: osd shutdown pgref assert: true log-ignorelist: - - PG_DEGRADED + - \(POOL_APP_NOT_ENABLED\) + - OSD_DOWN + - mons down + - mon down + - MON_DOWN + - out of quorum + - PG_DEGRADED + - Reduced data availability + - Degraded data redundancy + - OSDMAP_FLAGS 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 992f9e1bc36a7..2528230a372f7 100644 --- a/qa/suites/upgrade/reef-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/reef-x/stress-split/1-start.yaml @@ -1,10 +1,16 @@ overrides: ceph: log-ignorelist: + - \(POOL_APP_NOT_ENABLED\) + - OSD_DOWN - mons down - mon down - MON_DOWN - out of quorum + - PG_DEGRADED + - Reduced data availability + - Degraded data redundancy + - OSDMAP_FLAGS - PG_AVAILABILITY tasks: - install: From 05dca26c24e33719c37af3eb0a45cea324f2af9b Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Fri, 6 Dec 2024 11:56:33 +0100 Subject: [PATCH 2/8] qa/suites/upgrade/*-x: add "is down" to log-ignorelist Cover warnings like [WRN] osd.4 (root=default,host=smithi184) is down" in cluster log which OSD_DOWN doesn't. Signed-off-by: Ilya Dryomov --- qa/suites/upgrade/quincy-x/parallel/0-start.yaml | 1 + qa/suites/upgrade/quincy-x/stress-split/1-start.yaml | 1 + qa/suites/upgrade/reef-x/parallel/0-start.yaml | 1 + qa/suites/upgrade/reef-x/stress-split/1-start.yaml | 1 + 4 files changed, 4 insertions(+) diff --git a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml index 40fbcefe7280d..8bd185097806a 100644 --- a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml @@ -33,6 +33,7 @@ overrides: osd shutdown pgref assert: true log-ignorelist: - \(POOL_APP_NOT_ENABLED\) + - is down - OSD_DOWN - mons down - mon 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 005514292ce50..4d1b056ff325a 100644 --- a/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml @@ -2,6 +2,7 @@ overrides: ceph: log-ignorelist: - \(POOL_APP_NOT_ENABLED\) + - is down - OSD_DOWN - mons down - mon down diff --git a/qa/suites/upgrade/reef-x/parallel/0-start.yaml b/qa/suites/upgrade/reef-x/parallel/0-start.yaml index 40fbcefe7280d..8bd185097806a 100644 --- a/qa/suites/upgrade/reef-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/reef-x/parallel/0-start.yaml @@ -33,6 +33,7 @@ overrides: osd shutdown pgref assert: true log-ignorelist: - \(POOL_APP_NOT_ENABLED\) + - is down - OSD_DOWN - mons down - mon 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 2528230a372f7..3239f0def3d15 100644 --- a/qa/suites/upgrade/reef-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/reef-x/stress-split/1-start.yaml @@ -2,6 +2,7 @@ overrides: ceph: log-ignorelist: - \(POOL_APP_NOT_ENABLED\) + - is down - OSD_DOWN - mons down - mon down From 8fa6cf757ec2e9c77a964d2d24b9f32a83724c1f Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Sat, 7 Dec 2024 11:47:51 +0100 Subject: [PATCH 3/8] qa/suites/upgrade/*-x: add more PG states to log-ignorelist Cover warnings like [WRN] pg 2.7 is active+undersized+degraded, acting [6,7]" in cluster log This is based on commit 4a4fc7bad533 ("qa: ignore pg availability/degraded warnings"). Signed-off-by: Ilya Dryomov --- qa/suites/upgrade/quincy-x/parallel/0-start.yaml | 3 +++ qa/suites/upgrade/quincy-x/stress-split/1-start.yaml | 4 +++- qa/suites/upgrade/reef-x/parallel/0-start.yaml | 3 +++ qa/suites/upgrade/reef-x/stress-split/1-start.yaml | 4 +++- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml index 8bd185097806a..990718f14f945 100644 --- a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml @@ -39,7 +39,10 @@ overrides: - mon down - MON_DOWN - out of quorum + - PG_AVAILABILITY - PG_DEGRADED - Reduced data availability - Degraded data redundancy + - pg .* is stuck inactive + - pg .* is .*degraded - OSDMAP_FLAGS 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 4d1b056ff325a..24b5c9716a7da 100644 --- a/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml @@ -8,11 +8,13 @@ overrides: - mon down - MON_DOWN - out of quorum + - PG_AVAILABILITY - PG_DEGRADED - Reduced data availability - Degraded data redundancy + - pg .* is stuck inactive + - pg .* is .*degraded - OSDMAP_FLAGS - - PG_AVAILABILITY tasks: - install: branch: quincy diff --git a/qa/suites/upgrade/reef-x/parallel/0-start.yaml b/qa/suites/upgrade/reef-x/parallel/0-start.yaml index 8bd185097806a..990718f14f945 100644 --- a/qa/suites/upgrade/reef-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/reef-x/parallel/0-start.yaml @@ -39,7 +39,10 @@ overrides: - mon down - MON_DOWN - out of quorum + - PG_AVAILABILITY - PG_DEGRADED - Reduced data availability - Degraded data redundancy + - pg .* is stuck inactive + - pg .* is .*degraded - OSDMAP_FLAGS 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 3239f0def3d15..80aba7c594a94 100644 --- a/qa/suites/upgrade/reef-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/reef-x/stress-split/1-start.yaml @@ -8,11 +8,13 @@ overrides: - mon down - MON_DOWN - out of quorum + - PG_AVAILABILITY - PG_DEGRADED - Reduced data availability - Degraded data redundancy + - pg .* is stuck inactive + - pg .* is .*degraded - OSDMAP_FLAGS - - PG_AVAILABILITY tasks: - install: branch: reef From 8971b72c24ceb3bd6dc365bb2e34657fb6f5f080 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Sun, 8 Dec 2024 17:27:09 +0100 Subject: [PATCH 4/8] qa/suites/upgrade/*-x: add FS_DEGRADED to log-ignorelist Cover warnings like [WRN] Health check failed: 1 filesystem is degraded (FS_DEGRADED)" in cluster log MDS_ALL_DOWN is already ignored in ignorelist_health.yaml for reef-x. Not sure why it's not ignored for quincy-x -- ignorelist_health.yaml isn't present there at all. Signed-off-by: Ilya Dryomov --- qa/suites/upgrade/quincy-x/parallel/0-start.yaml | 1 + qa/suites/upgrade/quincy-x/stress-split/1-start.yaml | 1 + qa/suites/upgrade/reef-x/parallel/0-start.yaml | 1 + qa/suites/upgrade/reef-x/stress-split/1-start.yaml | 1 + 4 files changed, 4 insertions(+) diff --git a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml index 990718f14f945..e94c20b5b8930 100644 --- a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml @@ -45,4 +45,5 @@ overrides: - Degraded data redundancy - pg .* is stuck inactive - pg .* is .*degraded + - FS_DEGRADED - OSDMAP_FLAGS 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 24b5c9716a7da..ad111ad4e0b71 100644 --- a/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml @@ -14,6 +14,7 @@ overrides: - Degraded data redundancy - pg .* is stuck inactive - pg .* is .*degraded + - FS_DEGRADED - OSDMAP_FLAGS tasks: - install: diff --git a/qa/suites/upgrade/reef-x/parallel/0-start.yaml b/qa/suites/upgrade/reef-x/parallel/0-start.yaml index 990718f14f945..e94c20b5b8930 100644 --- a/qa/suites/upgrade/reef-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/reef-x/parallel/0-start.yaml @@ -45,4 +45,5 @@ overrides: - Degraded data redundancy - pg .* is stuck inactive - pg .* is .*degraded + - FS_DEGRADED - OSDMAP_FLAGS 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 80aba7c594a94..ee1be0e2e559c 100644 --- a/qa/suites/upgrade/reef-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/reef-x/stress-split/1-start.yaml @@ -14,6 +14,7 @@ overrides: - Degraded data redundancy - pg .* is stuck inactive - pg .* is .*degraded + - FS_DEGRADED - OSDMAP_FLAGS tasks: - install: From ad51e25d39e70db236b4f4750561d3b690c49ff8 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Sat, 7 Dec 2024 18:39:06 +0100 Subject: [PATCH 5/8] qa/suites/upgrade/*-x: add OSD_UPGRADE_FINISHED to log-ignorelist Cover warnings like [WRN] Health check failed: all OSDs are running squid or later but require_osd_release < squid (OSD_UPGRADE_FINISHED)" in cluster log They are inherently transient and should ideally be delayed for a grace period instead of being raised immediately just to be ignored. Signed-off-by: Ilya Dryomov --- qa/suites/upgrade/quincy-x/parallel/0-start.yaml | 1 + qa/suites/upgrade/quincy-x/stress-split/1-start.yaml | 1 + qa/suites/upgrade/reef-x/parallel/0-start.yaml | 1 + qa/suites/upgrade/reef-x/stress-split/1-start.yaml | 1 + 4 files changed, 4 insertions(+) diff --git a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml index e94c20b5b8930..a0a5904c0a518 100644 --- a/qa/suites/upgrade/quincy-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/quincy-x/parallel/0-start.yaml @@ -47,3 +47,4 @@ overrides: - pg .* is .*degraded - FS_DEGRADED - OSDMAP_FLAGS + - OSD_UPGRADE_FINISHED 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 ad111ad4e0b71..a59e703c6715b 100644 --- a/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/quincy-x/stress-split/1-start.yaml @@ -16,6 +16,7 @@ overrides: - pg .* is .*degraded - FS_DEGRADED - OSDMAP_FLAGS + - OSD_UPGRADE_FINISHED tasks: - install: branch: quincy diff --git a/qa/suites/upgrade/reef-x/parallel/0-start.yaml b/qa/suites/upgrade/reef-x/parallel/0-start.yaml index e94c20b5b8930..a0a5904c0a518 100644 --- a/qa/suites/upgrade/reef-x/parallel/0-start.yaml +++ b/qa/suites/upgrade/reef-x/parallel/0-start.yaml @@ -47,3 +47,4 @@ overrides: - pg .* is .*degraded - FS_DEGRADED - OSDMAP_FLAGS + - OSD_UPGRADE_FINISHED 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 ee1be0e2e559c..e805c1b8bee13 100644 --- a/qa/suites/upgrade/reef-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/reef-x/stress-split/1-start.yaml @@ -16,6 +16,7 @@ overrides: - pg .* is .*degraded - FS_DEGRADED - OSDMAP_FLAGS + - OSD_UPGRADE_FINISHED tasks: - install: branch: reef From cb2c5e3a604d6c4a939c28487b31972651f2a39d Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Sun, 8 Dec 2024 17:01:39 +0100 Subject: [PATCH 6/8] qa/suites/upgrade/*-x: ignore telemetry re-opt-in nudges Cover warnings like [WRN] Health check failed: Telemetry requires re-opt-in (TELEMETRY_CHANGED)" in cluster log [WRN] telemetry module includes new collections; please re-opt-in to new collections with `ceph telemetry on`" in cluster log Re-opt-in can happen in a respective workunit (test_telemetry_quincy_x.sh or test_telemetry_reef_x.sh), but it gets run only at the very end after both "workload" and "upgrade-sequence" complete. Over an hour passes in the interim: 2024-12-08T00:06:31.197 INFO:teuthology.task.print:**** done end upgrade, wait... ... 2024-12-08T01:28:38.588 INFO:tasks.workunit:Running workunit test_telemetry_reef_x.sh... The existing list is now duplicated in 0-start.yaml, so replace it entirely. Signed-off-by: Ilya Dryomov --- qa/suites/upgrade/quincy-x/parallel/1-tasks.yaml | 7 ++----- qa/suites/upgrade/reef-x/parallel/1-tasks.yaml | 8 ++------ 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/qa/suites/upgrade/quincy-x/parallel/1-tasks.yaml b/qa/suites/upgrade/quincy-x/parallel/1-tasks.yaml index e27c7c0f09288..f7167975aa9fc 100644 --- a/qa/suites/upgrade/quincy-x/parallel/1-tasks.yaml +++ b/qa/suites/upgrade/quincy-x/parallel/1-tasks.yaml @@ -1,11 +1,8 @@ overrides: ceph: log-ignorelist: - - mons down - - mon down - - MON_DOWN - - out of quorum - - PG_AVAILABILITY + - Telemetry requires re-opt-in + - telemetry module includes new collections tasks: - install: branch: quincy diff --git a/qa/suites/upgrade/reef-x/parallel/1-tasks.yaml b/qa/suites/upgrade/reef-x/parallel/1-tasks.yaml index ce4e0cc228bba..b5160c2dd00ef 100644 --- a/qa/suites/upgrade/reef-x/parallel/1-tasks.yaml +++ b/qa/suites/upgrade/reef-x/parallel/1-tasks.yaml @@ -1,12 +1,8 @@ overrides: ceph: log-ignorelist: - - mons down - - mon down - - MON_DOWN - - out of quorum - - PG_AVAILABILITY - - PG_DEGRADED + - Telemetry requires re-opt-in + - telemetry module includes new collections tasks: - install: branch: reef From b957e9bc7660f60f55f6627a707e11d15fed6dd3 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Mon, 9 Dec 2024 16:31:07 +0100 Subject: [PATCH 7/8] qa/suites/upgrade/reef-x: ignore more POOL_FULL variants Cover warnings like [WRN] POOL_FULL: 2 pool(s) full" in cluster log [WRN] pool 'test-librbd-smithi184-145008-24' is full (running out of quota)" in cluster log [WRN] Health detail: HEALTH_WARN 2 pool(s) full" in cluster log POOL_FULL is already ignored, but only in a parenthesized form. The "... (XYZ)" vs "XYZ: ..." variety isn't specific to POOL_FULL, so get rid of parenthesis throughout. While at it, drop POOL_APP_NOT_ENABLED, PG_AVAILABILITY and MON_DOWN which are duplicated in *-start.yaml. Signed-off-by: Ilya Dryomov --- .../parallel/overrides/ignorelist_health.yaml | 23 +++++++++---------- .../overrides/ignorelist_health.yaml | 23 +++++++++---------- 2 files changed, 22 insertions(+), 24 deletions(-) diff --git a/qa/suites/upgrade/reef-x/parallel/overrides/ignorelist_health.yaml b/qa/suites/upgrade/reef-x/parallel/overrides/ignorelist_health.yaml index 5e995da7d2c72..fa93b2f2ece29 100644 --- a/qa/suites/upgrade/reef-x/parallel/overrides/ignorelist_health.yaml +++ b/qa/suites/upgrade/reef-x/parallel/overrides/ignorelist_health.yaml @@ -1,20 +1,19 @@ overrides: ceph: log-ignorelist: - - \(MDS_ALL_DOWN\) - - \(MDS_UP_LESS_THAN_MAX\) - - \(OSD_SLOW_PING_TIME + - MDS_ALL_DOWN + - MDS_UP_LESS_THAN_MAX + - OSD_SLOW_PING_TIME - reached quota + - running out of quota - overall HEALTH_ - - \(CACHE_POOL_NO_HIT_SET\) - - \(POOL_FULL\) - - \(SMALLER_PGP_NUM\) - - \(SLOW_OPS\) - - \(CACHE_POOL_NEAR_FULL\) - - \(POOL_APP_NOT_ENABLED\) - - \(PG_AVAILABILITY\) - - \(OBJECT_MISPLACED\) + - CACHE_POOL_NO_HIT_SET + - pool\(s\) full + - POOL_FULL + - SMALLER_PGP_NUM + - SLOW_OPS + - CACHE_POOL_NEAR_FULL + - OBJECT_MISPLACED - slow request - - \(MON_DOWN\) - noscrub - nodeep-scrub diff --git a/qa/suites/upgrade/reef-x/stress-split/overrides/ignorelist_health.yaml b/qa/suites/upgrade/reef-x/stress-split/overrides/ignorelist_health.yaml index 5e995da7d2c72..fa93b2f2ece29 100644 --- a/qa/suites/upgrade/reef-x/stress-split/overrides/ignorelist_health.yaml +++ b/qa/suites/upgrade/reef-x/stress-split/overrides/ignorelist_health.yaml @@ -1,20 +1,19 @@ overrides: ceph: log-ignorelist: - - \(MDS_ALL_DOWN\) - - \(MDS_UP_LESS_THAN_MAX\) - - \(OSD_SLOW_PING_TIME + - MDS_ALL_DOWN + - MDS_UP_LESS_THAN_MAX + - OSD_SLOW_PING_TIME - reached quota + - running out of quota - overall HEALTH_ - - \(CACHE_POOL_NO_HIT_SET\) - - \(POOL_FULL\) - - \(SMALLER_PGP_NUM\) - - \(SLOW_OPS\) - - \(CACHE_POOL_NEAR_FULL\) - - \(POOL_APP_NOT_ENABLED\) - - \(PG_AVAILABILITY\) - - \(OBJECT_MISPLACED\) + - CACHE_POOL_NO_HIT_SET + - pool\(s\) full + - POOL_FULL + - SMALLER_PGP_NUM + - SLOW_OPS + - CACHE_POOL_NEAR_FULL + - OBJECT_MISPLACED - slow request - - \(MON_DOWN\) - noscrub - nodeep-scrub From 151364498361acb4f7ffeabb714ff62f46a61960 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Mon, 9 Dec 2024 16:31:24 +0100 Subject: [PATCH 8/8] 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 ', where is 'cephfs', 'rbd', 'rgw', or freeform for custom applications." in cluster log and also the non-parenthesized form. Signed-off-by: Ilya Dryomov --- qa/suites/upgrade/quincy-x/parallel/0-start.yaml | 5 ++++- qa/suites/upgrade/quincy-x/stress-split/1-start.yaml | 5 ++++- qa/suites/upgrade/reef-x/parallel/0-start.yaml | 5 ++++- qa/suites/upgrade/reef-x/stress-split/1-start.yaml | 5 ++++- 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 a0a5904c0a518..62fb6427f7223 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 a59e703c6715b..5641471629eb6 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 a0a5904c0a518..62fb6427f7223 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 e805c1b8bee13..59ccfe2cd0242 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