Project

General

Profile

Feature #47165

Updated by Sebastian Wagner over 3 years ago

Data returned from ceph-volume now includes libstoragemgmt data (health, transport, led support etc), so the orch device ls command should provide this information to the CLI user. 

 The general idea is as follows; 
 if the lsm_data dictionary is populated with usable info the table field layout would have the following columns 

 <pre> 
 HOST, PATH, TYPE, RPM, TRANSPORT, SIZE, VENDOR, MODEL, SERIAL, HEALTH, IDENT*, FAULT*, AVAIL, REJECT_REASONS 
 </pre> 

 * IDENT and FAULT would show ON/OFF or N/A - so after running a ceph device light on, it's state would be visible here too (after a refresh!) 

 if the lsm_data is not usable the output reverts to the original layout (with the exception of device_id (since this is a composite variable) 

 <pre> 
 HOST, PATH, TYPE, SIZE, VENDOR, MODEL, SERIAL, AVAIL, REJECT_REASONS 
 </pre>

Back