From 289e5f096a4a7f73c74f94fa94535447f04e9087 Mon Sep 17 00:00:00 2001 From: Yehuda Sadeh Date: Thu, 28 Oct 2021 07:25:55 -0700 Subject: [PATCH] mgr/rgw: start_radosgw is true by default Signed-off-by: Yehuda Sadeh --- src/pybind/mgr/rgw/module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/mgr/rgw/module.py b/src/pybind/mgr/rgw/module.py index ac3a24c2915..7defab0c623 100644 --- a/src/pybind/mgr/rgw/module.py +++ b/src/pybind/mgr/rgw/module.py @@ -111,7 +111,7 @@ class Module(orchestrator.OrchestratorClientMixin, MgrModule): endpoints: Optional[str] = None, sys_uid: Optional[str] = None, uid: Optional[str] = None, - start_radosgw: Optional[bool] = False): + start_radosgw: Optional[bool] = True): """Bootstrap new rgw realm, zonegroup, and zone""" @@ -158,7 +158,7 @@ class Module(orchestrator.OrchestratorClientMixin, MgrModule): zonegroup_name: Optional[str] = None, zone_name: Optional[str] = None, endpoints: Optional[str] = None, - start_radosgw: Optional[bool] = False): + start_radosgw: Optional[bool] = True): """Bootstrap new rgw zone that syncs with existing zone""" try: -- 2.39.5