]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
python-common/service_spec: add extra_entrypoint_args to CephExporter Spec
authorAdam King <adking@redhat.com>
Mon, 26 Jun 2023 20:42:52 +0000 (16:42 -0400)
committerAdam King <adking@redhat.com>
Tue, 11 Jul 2023 13:37:28 +0000 (09:37 -0400)
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 <adking@redhat.com>
src/python-common/ceph/deployment/service_spec.py

index 8ddc2f90f68ac90244f0df27aaab898cd9d2c299..5a6f33b68af3f5b5baa264787639fae92f2b4a09 100644 (file)
@@ -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