From: Adam King Date: Mon, 19 Jun 2023 20:07:31 +0000 (-0400) Subject: mgr/cephadm: add extra_entrypoint_args to mon spec X-Git-Tag: v18.2.4~194^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=12b8d78c2977a218653fb96abeaffd74980434f4;p=ceph.git mgr/cephadm: add extra_entrypoint_args to mon spec 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 (cherry picked from commit 370836d46475d8daa6b26acd6f5330abb932bfed) --- diff --git a/src/python-common/ceph/deployment/service_spec.py b/src/python-common/ceph/deployment/service_spec.py index 1b9cddd8ee83..3801d86cdcf9 100644 --- a/src/python-common/ceph/deployment/service_spec.py +++ b/src/python-common/ceph/deployment/service_spec.py @@ -1838,6 +1838,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, ): @@ -1850,6 +1851,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