From: Patrick Donnelly Date: Tue, 19 Mar 2024 13:56:20 +0000 (-0400) Subject: qa/cephfs: add probabilistic ignorelist for pg_health X-Git-Tag: v20.0.0~2311^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=db438cf990cb7cb1ebbe99cfdf31f1fc285747ab;p=ceph.git qa/cephfs: add probabilistic ignorelist for pg_health PG_AVAILABILITY/PG_DEGRADED warnings are dominating fs runs. We want the underlying issue fixed but it cannot continue to fail all of our tests 100% of the time. Use a probabilistic addition of these warnings to the ignorelist. Fixes: https://tracker.ceph.com/issues/64984 Related-to: https://tracker.ceph.com/issues/52624 Signed-off-by: Patrick Donnelly --- diff --git a/qa/cephfs/overrides/pg_health.yaml b/qa/cephfs/overrides/pg_health.yaml new file mode 100644 index 000000000000..defd70eeba86 --- /dev/null +++ b/qa/cephfs/overrides/pg_health.yaml @@ -0,0 +1,14 @@ +# To prevent PG_AVAILABILITY failures from dominating runs, we usually ignore +# these warnings. However, we'd like to see the cause of these warnings to be +# fixed so occasionally allow the warning to fail the job. +# +# https://tracker.ceph.com/issues/52624 + +teuthology: + premerge: if math.random() < 0.05 then reject() end +overrides: + ceph: + log-ignorelist: + - PG_AVAILABILITY + - PG_DEGRADED + - Reduced data availability