summaryrefslogtreecommitdiff
path: root/driver-requirements.txt
Commit message (Collapse)AuthorAgeFilesLines
* OOB one button secure erase for iLO5 based HPE Proliant servers.kesper2020-09-041-1/+1
| | | | | | | | | | | | | This commit adds functionality to perform out-of-band one button secure erase for iLO5 based HPE Proliant servers. Using this a user can securely erase the whole system. It includes deleting any deployment settings profiles, all licenses, Active Health System (AHS) and warranty data stored there, reseting BIOS and erasing supported non-volatile storage data. Change-Id: I2f46a67580e8a607a91a3f6660feb85ed1827dc8 Story: #2007964 Task: #40458
* Adds support SUM based firmware update as deploy stepShivanand Tendulker2020-08-081-1/+1
| | | | | | | | | SUM based firmware update exists as an inband clean step. This commit adds it as inband deploy step to `ilo` and `ilo5` hardware types. Change-Id: I2ac03dc2148a56aa23e86c6adb29a16bac443de3 Story: #2007923 Task: #40337
* Change ibmcclient compatible versionRiccardo Pittau2020-05-151-1/+1
| | | | | | And fix a couple of things to adapt to latest release. Change-Id: I1cf2dadcfa66975f7f5020ca97a75ebf7b055d4a
* Pin the python-ibmcclient upper bounds due to six usageJulia Kreger2020-05-141-1/+1
| | | | | | | | | | Python-ibmcclient 0.2.0 uses six, which is not installed by default as it is not necessary for python3 only usage. This patch pins the upper bounds until the library can be fixed and a new version released. Change-Id: I06136f3f445b6ee4858697e22e8d63ca3d81c137
* Update python-dracclient versionChristopher Dearborn2020-04-281-1/+1
| | | | | | | Update python-dracclient version to indicate compatibility with the 4.0.0 release. Change-Id: Ia4c3a712cfbdb255a79978e455b97e37f17fcae8
* Fix supported sushy-oem-idrac versionChristopher Dearborn2020-04-271-1/+1
| | | | | | | This patch updates the version of sushy-oem-idrac to the first backward incompatible release. Change-Id: I08d912f3d51a2b7b819d03a4aa325255c60ea8ff
* Improve `redfish` set-boot-mode implementationIlya Etingof2020-04-061-1/+1
| | | | | | | | | | | Refrain from touching unrelated boot params when setting boot mode through Redfish BMC. This should hopefully improve interoperability with Redfish BMCs. Change-Id: I461e54012045463b5e97daf26a93eb9dce6f6964 Story: 2007355 Task: 38910
* Bump minimum supported ansible version to 2.7Riccardo Pittau2020-03-041-1/+1
| | | | | | | | | | This is mainly based on the fact that all version up to 2.6 are not being updated anymore [0]. The 2.7 version is maintained at least with security fixes. [0] https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html Change-Id: Iea786985b93645da135a697140b9b14cdecf70bb
* Make `redfish_system_id` property optionalIlya Etingof2020-02-131-1/+1
| | | | | | | | | | | | | | | The `redfish_system_id` property of redfish hardware type has been made optional. If not specified in `driver_info`, and the target BMC manages a single ComputerSystem, ironic will assume that system. Otherwise, ironic will fail requiring explicit `redfish_system_id` specification in `driver_info`. Also bumpted sushy dependency to >= 3.1.0. Change-Id: I425baa7c7294c6c8a707e89df63a17da8e49b666 Story: 2007258 Task: 38619
* Using loop instead of with_XRiccardo Pittau2019-10-241-1/+1
| | | | | | | | | The loop keyword is the current recommended way to handle loops, and supports filters. It's available since Ansible version 2.5 so changing ansible requirement in driver-requirements. Change-Id: Ibff1f07ca00b8f5a5274d73f9e53196f49c33a66
* Merge "Update sushy library version"Zuul2019-10-181-1/+1
|\
| * Update sushy library versionChristopher Dearborn2019-10-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | This patch updates the sushy library version to a version that contains a fix for a critical message registry bug. This bug causes the Redfish hardware type to not work against at least some Dell EMC hardware. See: https://review.opendev.org/#/c/666253/ Change-Id: I03b415ce4f07f9c306bafc05c52527f51061d864 Story: #2006702 Task: #37011
* | DRAC: Drives conversion from JBOD to RAIDRachit71942019-10-161-1/+1
| | | | | | | | | | | | | | | | | | | | Added physical drives conversion from JBOD to RAID mode before RAID create_configuration cleaning step called in iDRAC driver. Change-Id: Ie6d1a9314d1543b73889f6d419541e75b7e06c89 Story: #2006479 Task: #36422
* | Add Redfish vmedia boot interface to idrac HW typeIlya Etingof2019-10-111-0/+3
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change adds idrac hardware type support of a virtual media boot interface implementation that utilizes the Redfish out-of-band (OOB) management protocol and is compatible with the integrated Dell Remote Access Controller (iDRAC) baseboard management controller (BMC). It is named 'idrac-redfish-virtual-media'. The iDRAC Redfish Service almost entirely interoperates with the virtual media boot workflow suggested by the Redfish standard. The only difference is configuring the system to boot from the inserted virtual media. The standard workflow expects it to be referred to as a CD-ROM or floppy disk drive boot source, no different from their physical counterparts. However, the iDRAC refers to them as virtual boot sources, distinct from their physical counterparts. Presently, the standard does not define virtual CD-ROM nor virtual floppy disk drive boot sources. However, the iDRAC provides a Redfish OEM extension for setting the system to boot from one of those virtual boot sources. To circumvent the above issue, the Python class which implements 'idrac-redfish-virtual-media' is derived from the class which implements the generic, vendor-independent 'redfish-virtual-media' interface. It overrides the method which sets the boot device to facilitate use of the aforementioned iDRAC Redfish Service OEM extension. The idrac hardware type declares support for that new interface implementation, in addition to all boot interface implementations it has been supporting. The priority order is retained by assigning the new 'idrac-redfish-virtual-media' the lowest priority. A new idrac hardware type Python package dependency is introduced. It is on 'sushy-oem-idrac'. [1] https://pypi.org/project/sushy-oem-idrac/ Co-Authored-By: Richard G. Pioso <richard.pioso@dell.com> Story: 2006570 Task: 36675 Change-Id: I416019fc1ed3ab2a3a3dbc4443571123ef90e327
* Fixed problem with UEFI iSCSI boot for nic adaptersparesh-sao2019-08-301-1/+1
| | | | | | | | | | | This commit fixes problem with multiple nic adapter by passing macs as an parameter while [un]set iSCSI target. Change-Id: Id533a476ac376dea68955b2a0de070212285b9e8 Depends-on: Iea420d7a047c8ac849fa2eeab5c6892be2d7a6e1 Story: #2006349 Task: #36114
* Out-of-band `erase_devices` clean step for Proliant Serversparesh-sao2019-08-231-1/+1
| | | | | | | | | | This commit adds new management interface `ilo5` to support an out-of-band clean step for sanitize disk erase on ilo5 based Proliant Servers. Change-Id: I7b9fc6add6f6a616bdee4d94cb577e7a27a794e5 Story: #2006394 Task: #36269
* Use openstacksdk for accessing ironic-inspectorDmitry Tantsur2019-07-311-1/+0
| | | | Change-Id: Ibe4f6bf0b38364b5dd214e6c7e58d45a4d71ffdf
* Merge "Collect sensor data in ``redfish`` hardware type"Zuul2019-07-011-1/+1
|\
| * Collect sensor data in ``redfish`` hardware typeIlya Etingof2019-06-241-1/+1
| | | | | | | | | | | | | | | | | | Adds sensor data collector to ``redfish`` management interface. Temperature, power, cooling and drive health metrics are collected. Change-Id: I8accdcc73c7e0261579d753633f9dfc02a868115 Story: 2005878 Task: 33692
* | Remove CIMC/UCS driversJulia Kreger2019-06-251-4/+0
|/ | | | | | | | | | | | | | | | | | | | Cisco's Third-Party CI was taken down as a result of the CTO's office being restructured. Numerous attempts to re-engage with Cisco directly and address the various known issues in their drivers have not proven to be fruitful. Additionally, the drivers are not Python3 compatible, and some reports have indicated that the CIMC driver is no longer compatible with newer versions. As such, the ironic community has little choice but to to remove the Cisco UCS/CIMC hardware types and driver interface code. Story: 2005033 Task: 29522 Change-Id: Ie12eaf7572ce4d66f6a68025b7fe2d294185ce28
* Add iDRAC driver realtime RAID creation and deletiondigambar2019-04-251-1/+1
| | | | | | | | | It adds capability to the idrac driver for creating and deleting RAID sets without rebooting the bare metal node. Change-Id: I3f4282afff860d9771a3d37f4d5e1172d88e87a3 Story: 2004861
* Place upper bound on python-dracclient versionRichard Pioso2019-04-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | The idrac hardware type requires python-dracclient versions greater than or equal to 1.5.0 and less than 3.0.0. This defines the upper bound to be less than 3.0.0 to make it easier to backport to stable/stein. It was originally proposed against stable/stein -- https://review.openstack.org/#/c/645956/ . Reviewers asked that it be submitted against master first -- https://review.openstack.org/#/c/645956/1/driver-requirements.txt@12 -- and then backported to stable/stein. The ironic master and stable/stein branches are compatible with python-dracclient releases less than 3.0.0. Note that python-dracclient's stable/stein branch was created off of tag 2.0.0. The ironic stable/stein branch follows tag 12.1.0, which was created on March 21. The python-dracclient tag 3.0.0 was created after that, on April 4. The upper bound on master will be updated to less than 4.0.0 by a follow-on change. A related change has been proposed for stable/rocky -- https://review.openstack.org/#/c/651657/ . It will be backported to stable/queens and prior after it merges. Change-Id: I5f6d6be53aec9d72e8ba5cfa436f12e01966f871
* Advance python-dracclient version requirementRichard Pioso2019-03-181-1/+1
| | | | | | | | | | python-dracclient versions 1.5.0 and later are required for a bug fix to the idrac hardware type which assigns ports' pxe_enabled flags during out-of-band inspection [1]. [1] https://review.openstack.org/#/c/617951 Change-Id: Iead9f0272d5cdd57c8837826ad340e11f5bcae15
* Merge "Add Huawei iBMC driver support"Zuul2019-03-151-0/+3
|\
| * Add Huawei iBMC driver supportQianbiao NG2019-03-141-0/+3
| | | | | | | | | | | | | | | | | | | | | | This patch proposes to adding iBMC driver for deploying the Huawei 2288H V5, CH121 V5 series servers. The driver aims to add management and power interfaces using Huawei iBMC RESTful APIs for those series servers. Change-Id: Ic5e920e4e58811c6a6dfe927732595950aea64e7 Story: 2004635 Task: 28566
* | driver-requirements: mark UcsSdk as Python 2 onlyMarcin Juszkiewicz2019-03-081-1/+1
|/ | | | Change-Id: Ia89f11861f100e08430f0e8a46276d1fc03ba53d
* OOB RAID implementation for ilo5 based HPE Proliant servers.Anshul Jain2019-01-031-1/+1
| | | | | | | | | | | This commit adds functionality to perform out-of-band RAID operations for ilo5 based HPE Proliant servers. Using this a user can perform create and delete the RAID configuration from the server. Co-Authored-By: Paresh Sao <paresh.sao@hpe.com> Change-Id: Iad0c609e59dca56729967133c6bbcff73b50a51e Story: 2003349 Task: 24391
* Add BIOS interface to Redfish hardware typeBill Dodd2018-11-291-1/+1
| | | | | | | | | | | | The Redfish hardware type does not currently implement the new BIOS hardware interface. This patch implements the Redfish BIOS interface, allowing operators to perform BIOS configuration actions on Ironic Redfish nodes. Change-Id: I44a2a465b08bc15465b7096b1e4838aebb460c1b Story: 2001791 Task: 12507
* Remove oneview driversJulia Kreger2018-10-151-3/+0
| | | | | | | | | | | In accordance with the deprecation of oneview, It is time to remove the oneview drivers. This patch oneview interfaces and documentation. Change-Id: Ided79fa788411f839614813ff033c42a13b88c75 Story: #2001924 Task: #24943
* Fix async keyword for Python 3.7Michal Arbet2018-09-051-1/+1
| | | | | | | | | | | | In Python 3.7, async becomes a keyword, and therefore we need to change variable async. The passthru() previously had async and async_call, we just remove the old parameter. scciclient moved from async to do_async as parameter, so we use that. Change-Id: I35cb34d9ba78186de88ff7b56ab89ee6e24db6e6
* Merge "iLO BIOS interface implementation"Zuul2018-07-231-1/+1
|\
| * iLO BIOS interface implementationvmud2132018-07-201-1/+1
| | | | | | | | | | | | | | | | | | | | Adds support for manual cleaning steps "apply_configuration" and "factory_reset" which manage BIOS settings on the iLO. This requires to implement 'ilo' BIOS interface for 'ilo' hardware type. Story: #2002899 Task: #22863 Change-Id: Ia014ea3d55504e8e0c815fb4f19bb87b1fc0d6ef
* | Merge "Follow-up changes to iRMC bios interface."Zuul2018-07-181-1/+1
|\ \ | |/ |/|
| * Follow-up changes to iRMC bios interface.Julia Kreger2018-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | Minor formatting and fix-ups for the iRMC bios interface addition patch. Update new scciclient version which will support this feature for newer iRMC server versions. Co-Authored-By: Nguyen Van Trung <trungnv@vn.fujitsu.com> Change-Id: I6cfe8175e687d6a900a17b31e75459d8b01a8edb
* | Migrate ironic `snmp` driver to the latest pysnmp APIIlya Etingof2018-07-161-1/+1
|/ | | | | | | | | | | | | | Since pysnmp 4.3 (which dates back to 2015), library's high-level SNMP API has been reworked towards better consistency and performance. Ironic snmp driver still uses the older pysnmp API. This story suggests migrating ironic snmp driver to the latest (e.g. post 4.3) pysnmp API. This bumps up ironic lower constraint on pysnmp. Change-Id: Id3a03210e8a52dda5e6403e2f9cb040c59ca9573 Story: 2002756 Task: 22612
* Implement iRMC BIOS configurationLuong Anh Tuan2018-07-111-1/+1
| | | | | | | | | | | | This patch supports BIOS configuration for iRMC drivers using out-of-band method. Tested successfully on TX2540 M1 along with eLCM license. Story: #1743674 Task: #10651 Co-Authored-By: Nguyen Van Trung <trungnv@vn.fujitsu.com> Change-Id: I61f15e7c65c4ef5cc5f959d2b016b053e70ba19b
* Support RAID configuration for BM via iRMC driverNguyen Van Trung2018-07-041-1/+1
| | | | | | | | | | | | | This is OOB solution which using create/delete raid config via Fujitsu iRMC driver. In addition, This commit will enable raid interface via iRMC driver. Tested successfully on TX2540 M1 along with eLCM license, SDcard and SP(Service Platform) available. Change-Id: Iacaf213f76abf130d5570fc13704b1d1bfcf49d7 Story: #1699695 Task: #10597
* Fix callback plugin for Ansible 2.5 compatabilityJulia Kreger2018-04-061-1/+1
| | | | | | | | | Ansible 2.5 changed an internal callback method around that is expected in plugins for options. In order for this to work, we needed to make some minor changes. Change-Id: I3801f339511155a4b8ecab91bb06b286b11c0a06 Related-Bug: #1758462
* Exclude Ansible 2.5 from driver-reqsJulia Kreger2018-03-231-1/+1
| | | | | | | | | | Ansible 2.5 appears to be incompaible with the current ansible driver interface. Until we've sorted it out, we should block >=2.5.0 from being installed. Related-Bug: #1758462 Change-Id: I9c3b2528f8da28554e3eb4e03528517a6c6c326f
* Implementation for UEFI iSCSI boot for ILOkesper2018-01-251-1/+1
| | | | | | | | | This change adds new methods in management interface and enhance boot interface of 'ilo' hardware type to support boot from iSCSI volume in UEFI boot mode. Change-Id: I585e0ef90f4397af1f09920c3a1bc47ddbcb1a97 Related-Bug: #1526861
* Merge "Add XClarity Driver"Zuul2018-01-221-0/+1
|\
| * Add XClarity DriverRushil Chugh2018-01-221-0/+1
| | | | | | | | | | | | | | | | This patch proposes to add new interfaces for management and power for the Lenovo XClarity Driver. Change-Id: Ic2743f9a4959a6165a7ec40f4772afb231205f36 Closes-Bug: #1702508
* | Introduce hpOneView and ilorest to OneViewHugo Nicodemos2017-12-131-0/+2
|/ | | | | | | | | | | | It introduces the ``hpOneView`` and ``ilorest`` library to the OneView Driver. This patch will be used as the standard patch to other patches related to the removal of the ``python-oneviewclient`` library dependency. Change-Id: Ib9d72ff5713d58631bcdccc817707b5d512e156e Partial-Bug: #1693788 Co-Authored-By: Fellype Cavalcante <fellypefca@lsd.ufcg.edu.br> Co-Authored-By: Ricardo Araujo <ricardo@lsd.ufcg.edu.br>
* Merge "Add additional capabilities discovery for iRMC driver"Zuul2017-11-301-1/+1
|\
| * Add additional capabilities discovery for iRMC driverNguyen Hung Phuong2017-11-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | This update enhances iRMC out-of-band hardware inspection for FUJITSU PRIMERGY bare metal nodes having iRMC S4 and beyond. The capabilities are server_model, rom_firmware_version, pci_gpu_devices, trusted_boot and irmc_firmware_version. Co-authored-By: Nguyen Van Trung <trungnv@vn.fujitsu.com> Change-Id: I1958e18a5b9d933e2aa405b200bac7717f146611 Closes-Bug: #1637422
* | Merge "Add ansible deploy interface"Zuul2017-11-271-0/+3
|\ \ | |/ |/|
| * Add ansible deploy interfacePavlo Shchelokovskyy2017-11-091-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this patch pulls the ansible deploy interface code and related ansible playbooks and auxiliary files from ironic-staging-drivers project into main ironic tree. As discussed in the spec, the use of ramdisk callbacks (lookup and hearbeats) is now mandatory with this deploy interface. Playbooks and modules were updated to require Ansible>=2.4, and custom Ansible module for executing 'parted' was replaced with usage of built-in Ansible module. The custom Ansible callback plugin now uses journald logger by default to adapt to the default DevStack setup. Documentation and devstack plugin changes enabling automated testing of this interface will be proposed in followup patches. Change-Id: I43f54688287953ccb1c2836437aea76236e6560b Related-Bug: #1526308
* | Revert "Introduce hpOneView and ilorest to OneView"Stenio Araujo2017-11-091-2/+0
| | | | | | | | | | | | | | | | | | Reverting these changes because python-hpOneView does not provide HTTPS secure connection with custom CAcert and could cause a possible security issue. This reverts commit 3a5288a9adcb184ac4cc371816dc2ffa18695bbb. Change-Id: I04d8435627873380bced7dc31f7469cdeb4bed12
* | Revert "Remove python-oneviewclient from Ironic OneView drivers"Hugo Nicodemos2017-11-091-1/+2
| | | | | | | | | | | | | | | | | | Reverting these changes because python-hpOneView does not provide HTTPS secure connection with custom CAcert and could cause a possible security issue. This reverts commit 037360f64d5db7401df1d656fa8f1932011b5587. Change-Id: I2a95f3cd23f20c363fe97fc347c9d2619d2ab5e9
* | Revert "Update python-ilorest-library to hardware type OneView"Hugo Nicodemos2017-11-091-1/+1
|/ | | | | | | | | Reverting these changes because python-hpOneView does not provide HTTPS secure connection with custom CAcert and could cause a possible security issue. This reverts commit 57bf86b06ae7d247ac2cf93c0d29922ef664698f. Change-Id: Ic543f3f2ebc8fc761ff523846e43093f68b6873d