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: v19.0.0~881^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=654a5925a401f4a7a26f170ce8885713d35f8cda;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 --- diff --git a/src/python-common/ceph/deployment/service_spec.py b/src/python-common/ceph/deployment/service_spec.py index 8ddc2f90f68..5a6f33b68af 100644 --- a/src/python-common/ceph/deployment/service_spec.py +++ b/src/python-common/ceph/deployment/service_spec.py @@ -1909,6 +1909,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' @@ -1917,7 +1918,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