From 75970ff80652e10bd79234b97de63cb0f39d9d90 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 2 Jul 2021 14:43:12 -0400 Subject: [PATCH] mgr/orchestrator: drop rados_config_location ServiceDescription property I'm not sure what this was intended to be used for... Signed-off-by: Sage Weil --- src/pybind/mgr/orchestrator/_interface.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/pybind/mgr/orchestrator/_interface.py b/src/pybind/mgr/orchestrator/_interface.py index 169513a50d5..16a0b5d9347 100644 --- a/src/pybind/mgr/orchestrator/_interface.py +++ b/src/pybind/mgr/orchestrator/_interface.py @@ -1067,7 +1067,6 @@ class ServiceDescription(object): spec: ServiceSpec, container_image_id: Optional[str] = None, container_image_name: Optional[str] = None, - rados_config_location: Optional[str] = None, service_url: Optional[str] = None, last_refresh: Optional[datetime.datetime] = None, created: Optional[datetime.datetime] = None, @@ -1083,10 +1082,6 @@ class ServiceDescription(object): self.container_image_id = container_image_id # image hash self.container_image_name = container_image_name # image friendly name - # Location of the service configuration when stored in rados - # object. Format: "rados:///[]" - self.rados_config_location = rados_config_location - # If the service exposes REST-like API, this attribute should hold # the URL. self.service_url = service_url @@ -1125,7 +1120,6 @@ class ServiceDescription(object): status = { 'container_image_id': self.container_image_id, 'container_image_name': self.container_image_name, - 'rados_config_location': self.rados_config_location, 'service_url': self.service_url, 'size': self.size, 'running': self.running, @@ -1148,7 +1142,6 @@ class ServiceDescription(object): status = { 'container_image_id': self.container_image_id, 'container_image_name': self.container_image_name, - 'rados_config_location': self.rados_config_location, 'service_url': self.service_url, 'size': self.size, 'running': self.running, -- 2.47.3