Prepare release metadata for openstack.cloud 2.6.0

Bump galaxy.yml to 2.6.0.
Add a 2.6.0 entry in changelogs/changelog.yaml,
regenerate CHANGELOG.rst with antsibull-changelog.

Tests-Run: tox -e pep8

Change-Id: I03a4a424d1f47a9fdaa70efae9b8c9a3fa60b072
Signed-off-by: Grzegorz Koper <grzegorzk@stackhpc.com>
This commit is contained in:
Grzegorz Koper
2026-04-01 11:46:04 +02:00
committed by Dmitriy Rabotyagov
parent 0ada05ec10
commit 2419b6e30c
13 changed files with 67 additions and 19 deletions

View File

@@ -4,6 +4,37 @@ Ansible OpenStack Collection Release Notes
.. contents:: Topics
v2.6.0
======
Release Summary
---------------
New modules for Bare Metal port groups and Neutron network segments, plus image/project enhancements and bugfixes.
Minor Changes
-------------
- Add support for setting the shard key on a baremetal node.
- image - Add support for image ID reservation and queued image creation
- project - Support updating extra_specs
Bugfixes
--------
- Fix Ansible errors
- Fixed compatability with openstacksdk version 4.15.0
New Modules
-----------
- openstack.cloud.baremetal_port_group - Create/Delete Bare Metal port group resources from OpenStack
- openstack.cloud.compute_service - Update OpenStack Compute (Nova) services
- openstack.cloud.network_segment - Creates/removes network segments from OpenStack
- openstack.cloud.volume_image_metadata - Manage OpenStack Cinder volume image metadata
- openstack.cloud.volume_retype - Retype (change the volume type of) a Cinder block storage volume
v2.5.0
======

View File

@@ -635,3 +635,33 @@ releases:
- Shows missing data in `stack_info` module output
release_summary: Bugfixes and minor changes
release_date: '2025-10-24'
2.6.0:
changes:
bugfixes:
- Fix Ansible errors
- Fixed compatability with openstacksdk version 4.15.0
minor_changes:
- Add support for setting the shard key on a baremetal node.
- image - Add support for image ID reservation and queued image creation
- project - Support updating extra_specs
release_summary: New modules for Bare Metal port groups and Neutron network
segments, plus image/project enhancements and bugfixes.
fragments:
- add_shard_key_field_for_baremetal_node.yaml
modules:
- description: Create/Delete Bare Metal port group resources from OpenStack
name: baremetal_port_group
namespace: ''
- description: Update OpenStack Compute (Nova) services
name: compute_service
namespace: ''
- description: Creates/removes network segments from OpenStack
name: network_segment
namespace: ''
- description: Manage OpenStack Cinder volume image metadata
name: volume_image_metadata
namespace: ''
- description: Retype (change the volume type of) a Cinder block storage volume
name: volume_retype
namespace: ''
release_date: '2026-06-10'

View File

View File

@@ -1,3 +0,0 @@
---
minor_changes:
- Add support for setting the shard key on a baremetal node.

View File

@@ -1,5 +0,0 @@
---
minor_changes:
- Added the new ``openstack.cloud.baremetal_port_group`` module to manage
Bare Metal port groups (create, update, and delete), including CI role
coverage and unit tests.

View File

@@ -1,6 +0,0 @@
---
minor_changes:
- Added a new ``openstack.cloud.volume_image_metadata`` module to manage
Cinder volume image metadata via the ``os-set_image_metadata`` API.
This enables correct preservation of image provenance and boot semantics
for volumes, which cannot be achieved using regular volume metadata.

View File

@@ -1,4 +0,0 @@
---
minor_changes:
- Added a new ``openstack.cloud.volume_retype`` module to retype
Cinder volumes via the ``os-retype`` API.

View File

@@ -32,4 +32,4 @@ build_ignore:
- .vscode
- ansible_collections_openstack.egg-info
- changelogs
version: 2.5.0
version: 2.6.0

View File

@@ -54,6 +54,7 @@ options:
choices: ['present', 'absent']
default: present
type: str
version_added: 2.6.0
extends_documentation_fragment:
- openstack.cloud.openstack
'''

View File

@@ -32,6 +32,7 @@ options:
description:
- Reason for disabling the service. Should be used with state `disabled`.
type: str
version_added: 2.6.0
extends_documentation_fragment:
- openstack.cloud.openstack
'''

View File

@@ -48,6 +48,7 @@ options:
choices: ['present', 'absent']
default: present
type: str
version_added: 2.6.0
extends_documentation_fragment:
- openstack.cloud.openstack
'''

View File

@@ -27,6 +27,7 @@ options:
type: dict
author:
- Simon Dodsley (@simondodsley)
version_added: 2.6.0
"""
EXAMPLES = r"""

View File

@@ -58,6 +58,7 @@ options:
- Ignored when I(wait=false).
type: int
default: 600
version_added: 2.6.0
extends_documentation_fragment:
- openstack.cloud.openstack
'''