From 654a5925a401f4a7a26f170ce8885713d35f8cda Mon Sep 17 00:00:00 2001 From: Adam King Date: Mon, 26 Jun 2023 16:42:52 -0400 Subject: [PATCH] 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 --- src/python-common/ceph/deployment/service_spec.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/python-common/ceph/deployment/service_spec.py b/src/python-common/ceph/deployment/service_spec.py index 8ddc2f90f68ac..5a6f33b68af3f 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 -- 2.39.5