Release 2.3.0 version
Change-Id: Ibe054979b707645722f9dd1133b40db95f1aba4e
This commit is contained in:
parent
5b61019a34
commit
83456005fc
@ -5,6 +5,62 @@ Ansible OpenStack Collection Release Notes
|
|||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v2.3.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Bugfixes and new modules
|
||||||
|
|
||||||
|
Major Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Add Neutron trunk module
|
||||||
|
- Add application_credential module
|
||||||
|
- Add module to filter available volume services
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Add inactive state for the images
|
||||||
|
- Add insecure_registry property to coe_cluster_templates
|
||||||
|
- Add support for creation of the default external networks
|
||||||
|
- Add target_all_project option
|
||||||
|
- Add vlan_tranparency for creation networks
|
||||||
|
- Allow munch results in server_info module
|
||||||
|
- Allow to specify multiple allocation pools when creating a subnet
|
||||||
|
- CI - Disable auto-discovery for setuptools
|
||||||
|
- CI - Don't create port with binding profile
|
||||||
|
- CI - Fix CI in collection
|
||||||
|
- CI - Fix linters-devel and devstack tests
|
||||||
|
- CI - Fix regression in quota module
|
||||||
|
- CI - Fix test for server shelve
|
||||||
|
- CI - Migrate Bifrost jobs to Ubuntu Jammy
|
||||||
|
- CI - Remove 2.9 jobs from Zuul config
|
||||||
|
- CI - Run functional testing regardless of pep8/linter results
|
||||||
|
- Enable glance-direct interop image import
|
||||||
|
- Ensure coe_cluster_template compare labels properly
|
||||||
|
- Wait for deleted server to disappear from results
|
||||||
|
- router - Allow specifying external network name in a different project
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Allow wait false when auto_ip is false
|
||||||
|
- Fix exception when creating object from file
|
||||||
|
- Fix exception when updating container with metadata
|
||||||
|
- Fix typo in openstack.cloud.lb_pool
|
||||||
|
- Fix typo in parameter description
|
||||||
|
- fix subnet module - allow cidr option with subnet_pool
|
||||||
|
|
||||||
|
New Modules
|
||||||
|
-----------
|
||||||
|
|
||||||
|
- openstack.cloud.application_credential - Manage OpenStack Identity (Keystone) application credentials
|
||||||
|
- openstack.cloud.trunk - Add or delete trunks from an OpenStack cloud
|
||||||
|
- openstack.cloud.volume_service_info - Fetch OpenStack Volume (Cinder) services
|
||||||
|
|
||||||
v2.2.0
|
v2.2.0
|
||||||
======
|
======
|
||||||
|
|
||||||
|
@ -526,3 +526,49 @@ releases:
|
|||||||
- Add volume_type modules
|
- Add volume_type modules
|
||||||
release_summary: New module for volume_type and bugfixes
|
release_summary: New module for volume_type and bugfixes
|
||||||
release_date: '2023-12-01'
|
release_date: '2023-12-01'
|
||||||
|
2.3.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- Allow wait false when auto_ip is false
|
||||||
|
- Fix exception when creating object from file
|
||||||
|
- Fix exception when updating container with metadata
|
||||||
|
- Fix typo in openstack.cloud.lb_pool
|
||||||
|
- Fix typo in parameter description
|
||||||
|
- fix subnet module - allow cidr option with subnet_pool
|
||||||
|
major_changes:
|
||||||
|
- Add Neutron trunk module
|
||||||
|
- Add application_credential module
|
||||||
|
- Add module to filter available volume services
|
||||||
|
minor_changes:
|
||||||
|
- Add inactive state for the images
|
||||||
|
- Add insecure_registry property to coe_cluster_templates
|
||||||
|
- Add support for creation of the default external networks
|
||||||
|
- Add target_all_project option
|
||||||
|
- Add vlan_tranparency for creation networks
|
||||||
|
- Allow munch results in server_info module
|
||||||
|
- Allow to specify multiple allocation pools when creating a subnet
|
||||||
|
- CI - Disable auto-discovery for setuptools
|
||||||
|
- CI - Don't create port with binding profile
|
||||||
|
- CI - Fix CI in collection
|
||||||
|
- CI - Fix linters-devel and devstack tests
|
||||||
|
- CI - Fix regression in quota module
|
||||||
|
- CI - Fix test for server shelve
|
||||||
|
- CI - Migrate Bifrost jobs to Ubuntu Jammy
|
||||||
|
- CI - Remove 2.9 jobs from Zuul config
|
||||||
|
- CI - Run functional testing regardless of pep8/linter results
|
||||||
|
- Enable glance-direct interop image import
|
||||||
|
- Ensure coe_cluster_template compare labels properly
|
||||||
|
- Wait for deleted server to disappear from results
|
||||||
|
- router - Allow specifying external network name in a different project
|
||||||
|
release_summary: Bugfixes and new modules
|
||||||
|
modules:
|
||||||
|
- description: Manage OpenStack Identity (Keystone) application credentials
|
||||||
|
name: application_credential
|
||||||
|
namespace: ''
|
||||||
|
- description: Add or delete trunks from an OpenStack cloud
|
||||||
|
name: trunk
|
||||||
|
namespace: ''
|
||||||
|
- description: Fetch OpenStack Volume (Cinder) services
|
||||||
|
name: volume_service_info
|
||||||
|
namespace: ''
|
||||||
|
release_date: '2024-11-28'
|
||||||
|
@ -32,4 +32,4 @@ build_ignore:
|
|||||||
- .vscode
|
- .vscode
|
||||||
- ansible_collections_openstack.egg-info
|
- ansible_collections_openstack.egg-info
|
||||||
- changelogs
|
- changelogs
|
||||||
version: 2.2.0
|
version: 2.3.0
|
||||||
|
@ -2,6 +2,7 @@ requires_ansible: ">=2.8"
|
|||||||
action_groups:
|
action_groups:
|
||||||
openstack:
|
openstack:
|
||||||
- address_scope
|
- address_scope
|
||||||
|
- application_credential
|
||||||
- auth
|
- auth
|
||||||
- baremetal_deploy_template
|
- baremetal_deploy_template
|
||||||
- baremetal_inspect
|
- baremetal_inspect
|
||||||
@ -81,6 +82,7 @@ action_groups:
|
|||||||
- subnet
|
- subnet
|
||||||
- subnet_pool
|
- subnet_pool
|
||||||
- subnets_info
|
- subnets_info
|
||||||
|
- trunk
|
||||||
- volume
|
- volume
|
||||||
- volume_backup
|
- volume_backup
|
||||||
- volume_backup_info
|
- volume_backup_info
|
||||||
|
Loading…
x
Reference in New Issue
Block a user