Aija Jauntēva 8fb44bc93f Add destructive field flag to export configuration
New optional parameter added to export configuration method to control
if destructive iDRAC settings, such as those that could cause loss of
network access, are exported. It is also unlikely that these fields
are necessary during import to replicate same static IP address
settings. User can still put these fields back during import.

Change-Id: Iad39267fedf1c1a7381d03152eb0cea0c114eede
2021-11-30 14:16:36 +00:00
2021-09-29 04:33:24 -04:00
2020-05-05 11:26:50 +02:00
2019-12-06 12:37:41 +01:00
2019-09-23 17:23:20 +02:00
2019-08-07 17:16:05 +02:00
2019-08-07 17:16:05 +02:00
2019-08-07 17:16:05 +02:00
2019-08-07 17:16:05 +02:00
2019-09-23 17:23:20 +02:00
2021-08-27 04:16:09 -04:00
2019-08-07 17:16:05 +02:00
2021-10-19 11:40:29 +02:00

Dell EMC OEM extension for sushy

Sushy is a client library designed to communicate with Redfish based BMC.

Redfish specification offers extensibility mechanism to let hardware vendors introduce their own features with the common Redfish framework. At the same time, sushy supports extending its data model by loading extensions found within its "oem" namespace.

The sushy-oem-idrac package is a sushy extension package that aims at adding high-level hardware management abstractions, that are specific to Dell EMC BMC (which is known under the name of iDRAC), to the tree of sushy Redfish resources.

Example use

Once installed, sushy user can access Dell EMC OEM resources. For example, OEM extension of Manager resource can be instrumental for switching the node to boot from a virtual media device:


import sushy

root = sushy.Sushy('http://mydellemcbmc.example.com')
manager = root.get_manager('iDRAC.Embedded.1')

oem_manager = manager.get_oem_extension('Dell')

oem_manager.set_virtual_boot_device(
    sushy.VIRTUAL_MEDIA_CD, persistent=False, manager=manager)    

See full example of virtual media boot setup in the functional test suite.

Description
An extension to sushy package supporting Redfish features that are specific to Dell EMC BMC (which is known under the name of iDRAC).
Readme 1.3 MiB
Languages
Python 100%