We are glad to announce the release of: python-tripleoclient 16.2.1: TripleO client This release is part of the wallaby stable release series. The source is available from: https://opendev.org/openstack/python-tripleoclient Download the package from: https://tarballs.openstack.org/python-tripleoclient/ Please report issues through: https://bugs.launchpad.net/tripleo/+bugs For more details, please see below. Changes in python-tripleoclient 16.2.0..16.2.1 ---------------------------------------------- 2663a5f2 BnR Typo missing some spaces between words on the command help 0886ecd1 Use Validations libs Client for main validation entry point 234a41b7 Ephemeral Heat: Add a --refresh option to external update run 4ed3d8b4 Ephemeral Heat unit tests b90a7196 Don't run containers in interactive mode fea5819c BnR added error msg in case there is no inventory 2006c0ff Auto OVN bridge mac mappings for standalone 516b39d6 Wait for Heat message queues Diffstat (except docs and test files) ------------------------------------- requirements.txt | 2 +- templates/ephemeral-heat/heat.conf.j2 | 1 + test-requirements.txt | 1 + tripleoclient/exceptions.py | 4 + tripleoclient/heat_launcher.py | 233 +++++--- .../test_overcloud_external_update.py | 36 ++ tripleoclient/utils.py | 5 +- tripleoclient/v1/overcloud_backup.py | 12 +- tripleoclient/v1/overcloud_deploy.py | 2 +- tripleoclient/v1/overcloud_external_update.py | 94 ++-- tripleoclient/v1/tripleo_deploy.py | 15 + tripleoclient/v1/tripleo_launch_heat.py | 15 +- tripleoclient/v1/tripleo_validator.py | 508 ++--------------- tripleoclient/v1/undercloud_backup.py | 20 +- tripleoclient/workflows/deployment.py | 14 +- 20 files changed, 1193 insertions(+), 635 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 4cb0a298..9c80b5a5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -19 +19 @@ ansible-runner>=1.4.5 # Apache 2.0 -validations-libs>=1.0.0 +validations-libs>=1.1.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index 0506d342..ecce57ad 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -11,0 +12 @@ testscenarios>=0.4 # Apache-2.0/BSD +validations-libs>=1.0.4 # Apache-2.0 \ No newline at end of file