From: Teoman ONAY Date: Wed, 26 Jul 2023 14:40:11 +0000 (+0200) Subject: mgr/cephadm: Add "networks" parameter to orch apply rgw X-Git-Tag: v18.2.1~330^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=8d6978b3c8f8bc2517e811fc0088e9acbe42ba04;p=ceph-ci.git mgr/cephadm: Add "networks" parameter to orch apply rgw This parameter is available in specs but not available as a parameter. Having it will ease its use in cephadm-adopt playbook in ceph-ansible. fixes: https://tracker.ceph.com/issues/62185 Signed-off-by: Teoman ONAY (cherry picked from commit 7f33397c76540dff8ed724caf2aa14ac94c73e03) --- diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index 7d8703bde7b..934b82255f6 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -1296,6 +1296,7 @@ Usage: realm: Optional[str] = None, zonegroup: Optional[str] = None, zone: Optional[str] = None, + networks: Optional[List[str]] = None, port: Optional[int] = None, ssl: bool = False, dry_run: bool = False, @@ -1319,6 +1320,7 @@ Usage: rgw_realm=realm, rgw_zonegroup=zonegroup, rgw_zone=zone, + networks=networks, rgw_frontend_port=port, ssl=ssl, placement=PlacementSpec.from_string(placement),