We are happy to announce the release of: openstack-heat 15.1.0: OpenStack Orchestration This release is part of the victoria stable release series. The source is available from: https://opendev.org/openstack/openstack-heat Download the package from: https://tarballs.openstack.org/heat/ For more details, please see below. 15.1.0 ^^^^^^ Prelude ******* There was a mismatch between the way heat create role behaved with the templates or with the openstack CLI on what relates to the default domain if the domain is not specified on both cases the CLI will not assign on to the created new role but the heat templates will assign the "default" domain New Features ************ * The "lb_algorithm" property of "OS::Octavia::Pool" resource now supports SOURCE_IP_PORT option required for Octavia OVN provider driver. Critical Issues *************** * Templates that creates roles but does not specify the domain will not get a "default" domain from now on. To have a domain added to your new role it needs to be assigned in the template. Bug Fixes ********* * The ordering in the list of segments returned by "OS::Neutron::Net" resources is not predictable. Stack updates changeing attributes of the network can cause the list of segments to shift. The ordering is now slightly more predictable, segments with name=``None`` are now placed first in the list. This doesn't guarantee the order, but typically only the segment implicitly created by neutron has no name attribute set. The template author should ensure other segments on the network does have a name set, so that the implicit segment will always be index 0. Resolving attributes of the implcitly created segment on the network resource can then predictibly happen using index 0. See bug: 1894920 (https://bugs.launchpad.net/tripleo/+bug/1894920). Changes in openstack-heat 15.0.0..15.1.0 ---------------------------------------- cbe9be5e7 Provide install_command to pip install with upper-constraints c062de4f2 Fallback to upstream for Fedora image f52feef69 Revert "Make grenade job voting again" 7ef31c2be Make grenade job voting again 86354c2d7 Don't create deployment when changing transport 40a3494c8 Update get_hosts to use available API c881da8b8 Use Block Storage API v3 instead of API v2 98fade887 Detect EL8 platform-python 0833daa3f Preserve order in list_concat_unique 652f872e4 Resume testing grenade jobs in Victoria 59328b254 Assume interface detach called for port not found 8bdf6b984 Don't update status for replaced resource 546bc2391 Net attr: Sort segments without name attribute first d8027e65c Fix args for initializing trove client 915da60e8 Fix multiple gate issues 7e03502a6 Align lower-constraints for new pip 779b39c97 Replace Fedora test image with F32 3cf3a68a4 Add SOURCE_IP_PORT to LB_ALGORITHM allowed values 996884da6 Delete the default value of domain in role creation 3f98fd9b1 As of nova microversion 2.57, personality is deprecated e30ea0af5 Configure swap as before 5f1ab43bb Update TOX_CONSTRAINTS_FILE for stable/victoria dc6602079 Update .gitreview for stable/victoria Diffstat (except docs and test files) ------------------------------------- .gitreview | 1 + .zuul.yaml | 4 ++- devstack/lib/heat | 17 +++++++-- heat/cloudinit/loguserdata.py | 9 +++++ heat/db/sqlalchemy/api.py | 3 +- heat/engine/clients/os/nova.py | 21 +++++------ heat/engine/clients/os/trove.py | 2 +- heat/engine/hot/functions.py | 14 ++++---- heat/engine/resource.py | 2 -- heat/engine/resources/openstack/keystone/role.py | 3 +- heat/engine/resources/openstack/neutron/net.py | 7 +++- heat/engine/resources/openstack/nova/server.py | 11 +++++- heat/engine/resources/openstack/octavia/pool.py | 4 +-- heat/engine/resources/server_base.py | 31 +++++----------- heat/objects/resource.py | 3 +- lower-constraints.txt | 14 +++++--- ...E_IP_PORT-to-LB_ALGORITHM-11f0edf22096df74.yaml | 4 +++ ...ttribute-semi-predictable-b40a869317d053cc.yaml | 16 +++++++++ ...ult-domain-from-templates-b5965242bfb78145.yaml | 13 +++++++ requirements.txt | 3 +- test-requirements.txt | 1 - tox.ini | 8 ++--- 35 files changed, 198 insertions(+), 153 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 35d59e85f..3bf25655e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8 +8 @@ croniter>=0.3.4 # MIT License -cryptography>=2.1 # BSD/Apache-2.0 +cryptography>=2.5 # BSD/Apache-2.0 @@ -37,0 +38 @@ python-blazarclient>=1.0.1 # Apache-2.0 +python-ceilometerclient>=2.5.0 diff --git a/test-requirements.txt b/test-requirements.txt index 95f10c298..a181012c5 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -18 +17,0 @@ oslotest>=3.2.0 # Apache-2.0 -psycopg2>=2.8 # LGPL/ZPL