An extension to sushy package supporting Redfish features that are specific to Dell EMC BMC (which is known under the name of iDRAC).
Go to file
Riccardo Pittau 6478da8b4d Bump hacking to 3.0.0
Change-Id: I30c1ea17f562bd4c6cc477ce649c4a28ebe49215
2020-03-30 11:52:40 +02:00
sushy_oem_idrac Reduce debug verbosity 2019-09-27 10:49:16 +02:00
zuul.d Drop support for Python 2.7 2020-03-13 14:36:15 +01:00
.gitignore Initial commit 2019-08-07 16:47:23 +02:00
.gitreview Add basic CI jobs and .gitreview 2019-12-06 12:37:41 +01:00
.stestr.conf Rename package to `sushy-oem-idrac` 2019-09-23 17:23:20 +02:00
CONTRIBUTING.rst Initial revision 2019-08-07 17:16:05 +02:00
HACKING.rst Initial revision 2019-08-07 17:16:05 +02:00
LICENSE Initial revision 2019-08-07 17:16:05 +02:00
README.md Rename package to `sushy-oem-idrac` 2019-09-23 17:23:20 +02:00
babel.cfg Initial revision 2019-08-07 17:16:05 +02:00
lower-constraints.txt Bump hacking to 3.0.0 2020-03-30 11:52:40 +02:00
requirements.txt Add basic CI jobs and .gitreview 2019-12-06 12:37:41 +01:00
setup.cfg Drop support for Python 2.7 2020-03-13 14:36:15 +01:00
setup.py Initial revision 2019-08-07 17:16:05 +02:00
test-requirements.txt Bump hacking to 3.0.0 2020-03-30 11:52:40 +02:00
tox.ini Drop support for Python 2.7 2020-03-13 14:36:15 +01:00

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.