From bae6bb405d57747631db3f26de88ef901ba10aa6 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 13 Mar 2020 10:14:04 -0500 Subject: [PATCH] mgr/orch: orch ls: rename SPEC -> PLACEMENT More accurate, I think. We only ever show placement here. Signed-off-by: Sage Weil --- src/pybind/mgr/orchestrator/module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index 65ddc83613b..71fa6d4fd81 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -342,7 +342,7 @@ class OrchestratorCli(OrchestratorClientMixin, MgrModule): now = datetime.datetime.utcnow() table = PrettyTable( ['NAME', 'RUNNING', 'REFRESHED', 'AGE', - 'SPEC', + 'PLACEMENT', 'IMAGE NAME', 'IMAGE ID', ], border=False) @@ -352,7 +352,7 @@ class OrchestratorCli(OrchestratorClientMixin, MgrModule): table.align['AGE'] = 'l' table.align['IMAGE NAME'] = 'l' table.align['IMAGE ID'] = 'l' - table.align['SPEC'] = 'l' + table.align['PLACEMENT'] = 'l' table.left_padding_width = 0 table.right_padding_width = 2 for s in sorted(services, key=lambda s: s.service_name): -- 2.47.3