An extension to sushy package supporting Redfish features that are specific to Dell EMC BMC (which is known under the name of iDRAC).
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Zuul 34b96be03b Merge "Switch to 2023.1 Python3 unit tests and generic template name" 8 months ago
sushy_oem_idrac Add OEM storage controller extension 12 months ago
zuul.d Switch to 2023.1 Python3 unit tests and generic template name 11 months ago
.gitignore Python 3 only 3 years ago
.gitreview Update .gitreview after project rename 1 year ago
.stestr.conf Rename package to `sushy-oem-idrac` 4 years ago
CONTRIBUTING.rst Initial revision 4 years ago
HACKING.rst Initial revision 4 years ago
LICENSE Initial revision 4 years ago
README.md Rename package to `sushy-oem-idrac` 4 years ago
babel.cfg Initial revision 4 years ago
requirements.txt Migrate constants to enums 2 years ago
setup.cfg Add OEM storage controller extension 12 months ago
setup.py Initial revision 4 years ago
test-requirements.txt Fix lower-constraints with the new pip resolver 3 years ago
tox.ini fix tox4 8 months ago

README.md

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.