From 7e22d2a31d277ab3eecff47b0864b206a32e2332 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 2 Aug 2021 10:31:32 -0500 Subject: [PATCH] rgw: default ms_mon_client_mode = secure Require a secure connection to the monitor. This is important because we may store SSL certs on the mon. Note that secure mode was introduce before Nautilus, so this can be backported at least to Pacific. Fixes: https://tracker.ceph.com/issues/52000 Signed-off-by: Sage Weil --- src/rgw/rgw_main.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rgw/rgw_main.cc b/src/rgw/rgw_main.cc index a1e50550f87..d5e674d02da 100644 --- a/src/rgw/rgw_main.cc +++ b/src/rgw/rgw_main.cc @@ -190,7 +190,8 @@ int radosgw_Main(int argc, const char **argv) map defaults = { { "debug_rgw", "1/5" }, { "keyring", "$rgw_data/keyring" }, - { "objecter_inflight_ops", "24576" } + { "objecter_inflight_ops", "24576" }, + { "ms_mon_client_mode", "secure" } }; vector args; -- 2.39.5