From 7a600725761d91ee5b952cb3bd75c49735f6bd84 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 15 Apr 2021 21:07:53 +0800 Subject: [PATCH] vstart.sh: disable "auth_allow_insecure_global_id_reclaim" to silence the health warning of "mons are allowing insecure global_id reclaim", which prevents the cluster from being active+clean. couple tests are expecting a warning free cluster before they starts. as this option is enabled by default for appeasing the old clients, but when it comes to most of upstream testing, we can just disable it. Fixes: https://tracker.ceph.com/issues/50374 Signed-off-by: Kefu Chai (cherry picked from commit 77a8376d0731c24e7bbf24523d3d7450e9f978af) --- src/vstart.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vstart.sh b/src/vstart.sh index d6ff4e4b976..e3c6f12e174 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -727,6 +727,7 @@ $CMONDEBUG $extra_conf mon cluster log file = $CEPH_OUT_DIR/cluster.mon.\$id.log osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd + auth allow insecure global id reclaim = false EOF } -- 2.47.3