From: Sage Weil Date: Mon, 2 Aug 2021 15:31:32 +0000 (-0500) Subject: rgw: default ms_mon_client_mode = secure X-Git-Tag: v17.1.0~1205^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7e22d2a31d277ab3eecff47b0864b206a32e2332;p=ceph.git 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 --- diff --git a/src/rgw/rgw_main.cc b/src/rgw/rgw_main.cc index a1e50550f87b..d5e674d02da5 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;