]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/cephadm: add extra_entrypoint_args to mon spec
authorAdam King <adking@redhat.com>
Mon, 19 Jun 2023 20:07:31 +0000 (16:07 -0400)
committerAdam King <adking@redhat.com>
Tue, 11 Jul 2023 13:37:28 +0000 (09:37 -0400)
There was no reason for the mon spec to not include
this option. I believe this was just an oversight caused
by the addition of the mon spec and extra_entrypoint_args
in separate PRs around the same time.

Signed-off-by: Adam King <adking@redhat.com>
src/python-common/ceph/deployment/service_spec.py

index afb8b0acb02a7dd0b67dd8e59459149dfab05331..8ddc2f90f68ac90244f0df27aaab898cd9d2c299 100644 (file)
@@ -1747,6 +1747,7 @@ class MONSpec(ServiceSpec):
                  preview_only: bool = False,
                  networks: Optional[List[str]] = None,
                  extra_container_args: Optional[GeneralArgList] = None,
+                 extra_entrypoint_args: Optional[GeneralArgList] = None,
                  custom_configs: Optional[List[CustomConfig]] = None,
                  crush_locations: Optional[Dict[str, List[str]]] = None,
                  ):
@@ -1759,6 +1760,7 @@ class MONSpec(ServiceSpec):
                                       preview_only=preview_only,
                                       networks=networks,
                                       extra_container_args=extra_container_args,
+                                      extra_entrypoint_args=extra_entrypoint_args,
                                       custom_configs=custom_configs)
 
         self.crush_locations = crush_locations