diff --git a/magnumclient/v1/mservices_shell.py b/magnumclient/v1/mservices_shell.py index dfc95f5b..4dae996c 100644 --- a/magnumclient/v1/mservices_shell.py +++ b/magnumclient/v1/mservices_shell.py @@ -20,6 +20,8 @@ from magnumclient.common import utils as magnum_utils def do_service_list(cs, args): """Print a list of magnum services.""" mservices = cs.mservices.list() - columns = ('id', 'host', 'binary', 'state') + columns = ('id', 'host', 'binary', 'state', 'disabled', + 'disabled_reason', 'created_at', 'updated_at') + utils.print_list(mservices, columns, {'versions': magnum_utils.print_list_field('versions')})