Software RAID: Create/delete configurations
This patch proposes to extend the IPA to be able to configure software RAID devices. For this, the {create,delete}_configuration methods of the GenericHardwareManager are implemented. Change-Id: Id20302537f7994982c7584af546a7e7520e9612b Story: #2004581 Task: #29101
This commit is contained in:
ironic_python_agent
releasenotes/notes
@ -204,6 +204,15 @@ class BlockDeviceError(RESTError):
|
||||
super(BlockDeviceError, self).__init__(details)
|
||||
|
||||
|
||||
class SoftwareRAIDError(RESTError):
|
||||
"""Error raised when a Software RAID causes an error."""
|
||||
|
||||
message = 'Software RAID caused unknown error'
|
||||
|
||||
def __init__(self, details):
|
||||
super(SoftwareRAIDError, self).__init__(details)
|
||||
|
||||
|
||||
class VirtualMediaBootError(RESTError):
|
||||
"""Error raised when virtual media device cannot be found for config."""
|
||||
|
||||
|
Reference in New Issue
Block a user