Skip to content

Commit f890fc2

Browse files
Merge branch 'collections' into issue/defect_fix
2 parents dac8c5d + bec15d3 commit f890fc2

File tree

7 files changed

+192
-153
lines changed

7 files changed

+192
-153
lines changed

CHANGELOG.rst

+46-7
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,66 @@ Dell OpenManage Ansible Modules Release Notes
44

55
.. contents:: Topics
66

7+
v9.1.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
- ``redfish_storage_volume`` is enhanced to support iDRAC8.
14+
- ``dellemc_idrac_storage_module`` is deprecated and replaced with ``idrac_storage_volume``.
15+
16+
Minor Changes
17+
-------------
18+
19+
- redfish_storage_volume - This module is enhanced to support iDRAC8.
20+
21+
Deprecated Features
22+
-------------------
23+
24+
- The ``dellemc_idrac_storage_volume`` module is deprecated and replaced with ``idrac_storage_volume``.
25+
26+
Bugfixes
27+
--------
28+
29+
- Added support for RAID creation using NVMe disks.(https://github.com/dell/dellemc-openmanage-ansible-modules/issues/635)
30+
- redfish_storage_volume is enhanced to support iDRAC8.(https://github.com/dell/dellemc-openmanage-ansible-modules/issues/625)
31+
32+
Known Issues
33+
------------
34+
35+
- idrac_diagnostics - Issue(285322) - This module doesn't support export of diagnostics file to HTTP and HTTPS share via SOCKS proxy.
36+
- idrac_firmware - Issue(279282) - This module does not support firmware update using HTTP, HTTPS, and FTP shares with authentication on iDRAC8.
37+
- idrac_storage_volume - Issue(290766) - The module will report success instead of showing failure for new virtual creation on the BOSS-N1 controller if a virtual disk is already present on the same controller.
38+
- ome_diagnostics - Issue(279193) - Export of SupportAssist collection logs to the share location fails on OME version 4.0.0.
39+
- ome_smart_fabric_uplink - Issue(186024) - The module supported by OpenManage Enterprise Modular, however it does not allow the creation of multiple uplinks of the same name. If an uplink is created using the same name as an existing uplink, then the existing uplink is modified.
40+
41+
New Modules
42+
-----------
43+
44+
- dellemc.openmanage.idrac_storage_volume - Configures the RAID configuration attributes.
45+
746
v9.0.0
847
======
948

1049
Release Summary
1150
---------------
12-
- Module ``idrac_diagnostics`` is added to run and export diagnostics on iDRAC.
13-
- Role ``idrac_user`` is added to manage local users of iDRAC.
51+
52+
- idrac_diagnostics module is added to run and export diagnostics on iDRAC.
53+
- idrac_user role is added to manage local users of iDRAC.
1454

1555
Major Changes
1656
-------------
1757

18-
- idrac_user - This role is introduced to manage local users of iDRAC.
1958
- idrac_diagnostics - The module is introduced to run and export diagnostics on iDRAC.
59+
- idrac_user - This role is introduced to manage local users of iDRAC.
2060

2161
Bugfixes
2262
--------
2363

64+
- idrac_network_attributes - Issue(279049) - If unsupported values are provided for the parameter ``ome_network_attributes``, then this module does not provide a correct error message.
2465
- ome_device_network_services - Issue(212681) - The module does not provide a proper error message if unsupported values are provided for the following parameters- port_number, community_name, max_sessions, max_auth_retries, and idle_timeout.
2566
- ome_device_power_settings - Issue(212679) - The module displays the following message if the value provided for the parameter ``power_cap`` is not within the supported range of 0 to 32767, ``Unable to complete the request because PowerCap does not exist or is not applicable for the resource URI.``
26-
- idrac_network_attributes - Issue(279049) - If unsupported values are provided for the parameter ``ome_network_attributes``, then this module does not provide a correct error message.
2767

2868
Known Issues
2969
------------
@@ -36,12 +76,12 @@ Known Issues
3676
New Modules
3777
-----------
3878

39-
- dellemc.openmanage.idrac_diagnostics - This module allows to to run and export diagnostics on iDRAC.
79+
- dellemc.openmanage.idrac_diagnostics - This module allows to run and export diagnostics on iDRAC.
4080

4181
New Roles
4282
---------
4383

44-
- dellemc.openmanage.idrac_user - Role to manage local users for iDRAC.
84+
- dellemc.openmanage.idrac_user - Role to manage local users of iDRAC.
4585

4686
v8.7.0
4787
======
@@ -420,7 +460,6 @@ Release Summary
420460
Gather facts from iDRAC and Deploy operating system is added.
421461
- Plugin OME inventory is enhanced to support the environment variables for the input parameters.
422462

423-
424463
Known Issues
425464
------------
426465

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ OpenManage Ansible Modules simplifies and automates provisioning, deployment, an
3131
* Dell OpenManage Enterprise Modular versions 2.10.10 and above.
3232

3333
## Prerequisites
34-
* [Ansible Core >= 2.16.3 and 2.15.9](https://github.com/ansible/ansible)
34+
* [Ansible Core >= 2.16.4 and 2.15.9](https://github.com/ansible/ansible)
3535
* Python >= 3.9.6
3636
* To run the iDRAC modules, install OpenManage Python Software Development Kit (OMSDK)
3737
using either ```pip install omsdk --upgrade``` or ```pip install -r requirements.txt```.
3838
OMSDK can also be installed from [Dell OpenManage Python SDK](https://github.com/dell/omsdk)
3939
* Operating System
4040
* Red Hat Enterprise Linux (RHEL) 9.3 and 8.9
4141
* SUSE Linux Enterprise Server (SLES) 15 SP5 and 15 SP4
42-
* Ubuntu 22.04.3 and 22.04.2
42+
* Ubuntu 22.04.4 and 22.04.3
4343

4444
## Installation
4545

changelogs/changelog.yaml

+33
Original file line numberDiff line numberDiff line change
@@ -1772,3 +1772,36 @@ releases:
17721772
name: idrac_user
17731773
namespace: null
17741774
release_date: '2024-02-29'
1775+
9.1.0:
1776+
changes:
1777+
release_summary: '- ``redfish_storage_volume`` is enhanced to support iDRAC8.
1778+
1779+
- ``dellemc_idrac_storage_module`` is deprecated and replaced with ``idrac_storage_volume``.'
1780+
bugfixes:
1781+
- Added support for RAID creation using NVMe disks.(https://github.com/dell/dellemc-openmanage-ansible-modules/issues/635)
1782+
- redfish_storage_volume is enhanced to support iDRAC8.(https://github.com/dell/dellemc-openmanage-ansible-modules/issues/625)
1783+
deprecated_features:
1784+
- The ``dellemc_idrac_storage_volume`` module is deprecated and replaced with
1785+
``idrac_storage_volume``.
1786+
minor_changes:
1787+
- redfish_storage_volume - This module is enhanced to support iDRAC8.
1788+
known_issues:
1789+
- idrac_storage_volume - Issue(290766) - The module will report success instead of showing
1790+
failure for new virtual creation on the BOSS-N1 controller if a virtual disk is already
1791+
present on the same controller.
1792+
- idrac_diagnostics - Issue(285322) - This module doesn't support export of diagnostics
1793+
file to HTTP and HTTPS share via SOCKS proxy.
1794+
- idrac_firmware - Issue(279282) - This module does not support firmware update using
1795+
HTTP, HTTPS, and FTP shares with authentication on iDRAC8.
1796+
- ome_diagnostics - Issue(279193) - Export of SupportAssist collection logs to the
1797+
share location fails on OME version 4.0.0.
1798+
- ome_smart_fabric_uplink - Issue(186024) - The module supported by OpenManage
1799+
Enterprise Modular, however it does not allow the creation of multiple uplinks
1800+
of the same name. If an uplink is created using the same name as an existing
1801+
uplink, then the existing uplink is modified.
1802+
modules:
1803+
- description:
1804+
Configures the RAID configuration attributes.
1805+
name: idrac_storage_volume
1806+
namespace: ''
1807+
release_date: '2024-03-29'

0 commit comments

Comments
 (0)