Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 7.4.0 #489

Merged
merged 2 commits into from
Mar 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions .ansible-lint
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
exclude_paths:
- changelogs/
- .github/
- roles/idrac_gather_facts/molecule/*/*_assert.yml
6 changes: 3 additions & 3 deletions .github/workflows/ansible-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ansible-version: [stable-2.11, stable-2.12, stable-2.13, stable-2.14]
ansible-version: [stable-2.11, stable-2.12, stable-2.13, stable-2.14, devel]

steps:
- name: Set up Python 3.9
- name: Set up Python
uses: actions/setup-python@v1
with:
# it is just required to run that once as "ansible-test sanity" in the docker image
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
fail-fast: false
matrix:
python-version: [3.9, '3.10']
ansible-version: [stable-2.13, stable-2.14]
ansible-version: [stable-2.12, stable-2.13, stable-2.14]

steps:
# Important: This sets up your GITHUB_WORKSPACE environment variable
Expand Down
33 changes: 32 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,37 @@ Dell OpenManage Ansible Modules Release Notes
.. contents:: Topics


v7.4.0
======

Release Summary
---------------

- Role to support the Import server configuration profile, Manage iDRAC power states, Manage iDRAC certificate,
Gather facts from iDRAC and Deploy operating system is added.
- Plugin OME inventory is enhanced to support the environment variables for the input parameters.


Known Issues
------------

- idrac_os_deployment- Issue(260496) - OS installation will support only NFS and CIFS share to store the custom ISO in the destination_path, HTTP/HTTPS/FTP not supported
- idrac_redfish_storage_contoller - Issue(256164) - If incorrect value is provided for one of the attributes in the provided attribute list for controller configuration, then this module does not exit with error.
- idrac_user - Issue(192043) The module may error out with the message ``Unable to perform the import or export operation because there are pending attribute changes or a configuration job is in progress``. Wait for the job to complete and run the task again.
- ome_application_alerts_syslog - Issue(215374) - The module does not provide a proper error message if the destination_address is more than 255 characters.
- 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.
- 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.``
- ome_smart_fabric_uplink - Issue(186024) - Despite the module supported by OpenManage Enterprise Modular, 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, the existing uplink is modified.

New Roles
---------

- dellemc.openmanage.idrac_certificate - Role to manage the iDRAC certificates - generate CSR, import/export certificates, and reset configuration - for PowerEdge servers.
- dellemc.openmanage.idrac_gather_facts - Role to gather facts from the iDRAC Server.
- dellemc.openmanage.idrac_import_server_config_profile - Role to import iDRAC Server Configuration Profile (SCP).
- dellemc.openmanage.idrac_os_deployment - Role to deploy specified operating system and version on the servers.
- dellemc.openmanage.idrac_server_powerstate - Role to manage the different power states of the specified device.

v7.3.0
======

Expand Down Expand Up @@ -457,7 +488,7 @@ Support to provide custom or organizational CA signed certificate for SSL valida
Major Changes
-------------

- All modules can read custom or organizational CA signed certificate from the environment variables. Please refer to `SSL Certificate Validation <https://github.com/dell/dellemc-openmanage-ansible-modules#ssl-certificate-validation>` _ section in the `README.md <https://github.com/dell/dellemc-openmanage-ansible-modules/blob/collections/README.md#SSL-Certificate-Validation>` _ for modification to existing playbooks or setting environment variable.
- All modules can read custom or organizational CA signed certificate from the environment variables. Please refer to `SSL Certificate Validation <https://github.com/dell/dellemc-openmanage-ansible-modules#ssl-certificate-validation>` _ section in the `README.md <https://github.com/dell/dellemc-openmanage-ansible-modules /blob/collections/README.md#SSL-Certificate-Validation>` _ for modification to existing playbooks or setting environment variable.

Bugfixes
--------
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ OpenManage Ansible Modules simplifies and automates provisioning, deployment, an
## Supported Platforms
* iDRAC7 based Dell PowerEdge Servers with firmware versions 2.63.60.62 and above.
* iDRAC8 based Dell PowerEdge Servers with firmware versions 2.82.82.82 and above.
* iDRAC9 based Dell PowerEdge Servers with firmware versions 6.00.30.00 and above.
* Dell OpenManage Enterprise versions 3.8.3 and above.
* iDRAC9 based Dell PowerEdge Servers with firmware versions 6.10.00.00 and above.
* Dell OpenManage Enterprise versions 3.9.2 and above.
* Dell OpenManage Enterprise Modular versions 1.40.20 and above.

## Prerequisites
* [Ansible Core >= 2.13.7 and 2.14.1](https://github.com/ansible/ansible)
* [Ansible Core >= 2.13.8 and 2.14.3](https://github.com/ansible/ansible)
* Python >= 3.9.6
* To run the iDRAC modules, install OpenManage Python Software Development Kit (OMSDK)
using either ```pip install omsdk --upgrade``` or ```pip install -r requirements.txt```.
Expand Down
Loading