DMTF/python-redfish-library

Is there any way to get the RAID Level configured for the Virtual Drives (Cisco UCS servers)

Closed this issue · 2 comments

Hi,

I am writing a script which displays all the Raid level configured for all the virtual drives and unfortunately I don't see the Raid level displayed when I use 'Display details of virtual drive'.
I see this info when I logged into CIMC(Cisco Integrated Management Controller)
image

Is there any way to get the Raid level configured for the Virtual drive ?

It's going to depend on the Redfish implementation. We recently added an explicit RAIDType property which is the RAID level. However, older implementations probably don't have that and instead have VolumeType. That property has a translation to common RAID Levels as follows:
RawDevice - NonRAID
NonRedundant - RAID 0
Mirrored - RAID 1
StripedWithParity - RAID 5 or RAID 6
SpannedMirrors - RAID 10
SpannedStripesWithParity - RAID 50 or RAID 60

Thanks @pboyd04 . This info is helpful.