Type and image_id are removed from server

No longer show them in the bay object for the client

Change-Id: Ie872e780154b77fced4a83fbe591af8120353272
This commit is contained in:
Steven Dake
2014-12-16 23:20:43 -07:00
parent 6efdb49394
commit 96be8496cf

View File

@@ -45,7 +45,7 @@ def _show_node(node):
def do_bay_list(cs, args):
"""Print a list of available bays."""
bays = cs.bays.list()
columns = ('uuid', 'name', 'type', 'image_id', 'node_count')
columns = ('uuid', 'name', 'node_count')
utils.print_list(bays, columns,
{'versions': _print_list_field('versions')})