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
Dmitry Tantsur 585703a22c
Replace github links in README
Change-Id: Ia44699b3790f3bc12d3d441ea8fc0c6c7e46c95c
2024-09-03 16:08:47 +02:00
sushy_oem_idrac Merge "Added method for getting kvm session" 2024-09-03 13:56:12 +00:00
zuul.d Add codespell non voting test 2024-03-28 10:05:23 +00:00
.gitignore Python 3 only 2020-05-05 11:26:50 +02:00
.gitreview Update .gitreview after project rename 2022-04-19 06:57:34 -04:00
.stestr.conf 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
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 Replace github links in README 2024-09-03 16:08:47 +02:00
requirements.txt Migrate constants to enums 2022-01-06 10:38:16 -05:00
setup.cfg Update setup and tox config 2024-03-28 11:04:21 +01:00
setup.py Initial revision 2019-08-07 17:16:05 +02:00
test-requirements.txt Fix lower-constraints with the new pip resolver 2020-12-09 17:19:07 -05:00
tox.ini Add codespell non voting test 2024-03-28 10:05:23 +00:00

Dell EMC OEM extension for sushy

Sushy is a 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.