From: Adam King Date: Mon, 26 Jun 2023 20:42:52 +0000 (-0400) Subject: python-common/service_spec: add extra_entrypoint_args to CephExporter Spec X-Git-Tag: v18.2.4~194^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=dbc731156a679e085fc05cb7b89f0c558e7dd2de;p=ceph.git python-common/service_spec: add extra_entrypoint_args to CephExporter Spec Similar to the mon, there's no reason for Ceph Exporter in particular not to have this, it's just missing because of the timing of when it was merged in. Signed-off-by: Adam King (cherry picked from commit 654a5925a401f4a7a26f170ce8885713d35f8cda) --- diff --git a/src/python-common/ceph/deployment/service_spec.py b/src/python-common/ceph/deployment/service_spec.py index 3801d86cdcf9..4fd891962791 100644 --- a/src/python-common/ceph/deployment/service_spec.py +++ b/src/python-common/ceph/deployment/service_spec.py @@ -2000,6 +2000,7 @@ class CephExporterSpec(ServiceSpec): unmanaged: bool = False, preview_only: bool = False, extra_container_args: Optional[GeneralArgList] = None, + extra_entrypoint_args: Optional[GeneralArgList] = None, ): assert service_type == 'ceph-exporter' @@ -2008,7 +2009,8 @@ class CephExporterSpec(ServiceSpec): placement=placement, unmanaged=unmanaged, preview_only=preview_only, - extra_container_args=extra_container_args) + extra_container_args=extra_container_args, + extra_entrypoint_args=extra_entrypoint_args) self.service_type = service_type self.sock_dir = sock_dir