mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
Draft tabular output of disk information
Print out roughly the data that will be desired in the storage show.
This commit is contained in:
parent
6378f823f3
commit
a034d05cc8
@ -57,8 +57,12 @@ def showstorage(noderange, options, args):
|
||||
curr = e['databynode'][node]
|
||||
storagebynode[node][curr['type'] + 's'].append(curr)
|
||||
for node in storagebynode:
|
||||
print('{0:10}{1:28}{2:10}{3:10}'.format('Disk', 'Description',
|
||||
'Status', 'Serial', 'FRU'))
|
||||
for disk in storagebynode[node]['disks']:
|
||||
print(repr(disk))
|
||||
print('{0:10}{1:28}{2:10}{3:10}'.format(
|
||||
disk['name'], disk['description'], disk['status'],
|
||||
disk['serial'], disk['fru']))
|
||||
|
||||
|
||||
def createstorage(noderange, options, args):
|
||||
|
Loading…
Reference in New Issue
Block a user