We are jazzed to announce the release of: tripleo-validations 13.4.1: A collection of Ansible playbooks to detect and report potential issues during TripleO deployments This release is part of the victoria stable release series. The source is available from: https://opendev.org/openstack/tripleo-validations Download the package from: https://tarballs.openstack.org/tripleo-validations/ Please report issues through: https://bugs.launchpad.net/tripleo/+bugs For more details, please see below. Changes in tripleo-validations 13.4.0..13.4.1 --------------------------------------------- ebe5446 Trigger molecule jobs when modifying molecule-requirements.txt file 69ba3d7 NVF OvS DPDK instance emulatorpin validation fix 8ad642f Fix Inventory Generation without Overcloud deployed 133ee0d NFV OvS DPDK zero packet loss validations 16c6893 oslo_config_validator: Setting container network to none f9dcec5 Corrected the task 'Get file_descriptors total_limit' to get the 'fs.file-max' value. 3b9c0a3 [victoria-only] molecule-requirements constraints Diffstat (except docs and test files) ------------------------------------- .../modules-check_cpus_aligned_with_dpdk_nics.rst | 15 ++ .../modules-check_other_processes_pmd_usage.rst | 15 ++ .../modules-convert_range_to_numbers_list.rst | 15 ++ .../modules/modules-get_dpdk_nics_numa_info.rst | 15 ++ .../modules/modules-pmd_threads_siblings_check.rst | 15 ++ .../role-check_nfv_ovsdpdk_zero_packet_loss.rst | 39 ++++ library/check_cpus_aligned_with_dpdk_nics.py | 140 +++++++++++++ library/check_other_processes_pmd_usage.py | 162 +++++++++++++++ library/convert_range_to_numbers_list.py | 97 +++++++++ library/get_dpdk_nics_numa_info.py | 143 ++++++++++++++ library/pmd_threads_siblings_check.py | 187 ++++++++++++++++++ molecule-requirements.txt | 16 +- playbooks/nfv-ovsdpdk-zero-packet-loss-check.yaml | 14 ++ .../tasks/check_nfv_instances.yml | 37 ++++ .../tasks/check_nfv_pci_address.yml | 26 +++ .../tasks/main.yml | 217 +++++++++++++++++++++ .../tasks/validate_dpdk_port_bandwidth.yml | 21 ++ .../tasks/validate_instance.yml | 91 +++++++++ roles/oslo_config_validator/defaults/main.yml | 1 + .../oslo_config_validator/tasks/container_run.yml | 1 + roles/rabbitmq_limits/tasks/main.yml | 2 +- scripts/tripleo-ansible-inventory | 2 +- .../test_check_cpus_aligned_with_dpdk_nics.py | 67 +++++++ .../test_check_other_processes_pmd_usage.py | 116 +++++++++++ .../library/test_convert_range_to_numbers_list.py | 45 +++++ .../library/test_pmd_threads_siblings_check.py | 120 ++++++++++++ zuul.d/molecule.yaml | 44 +++++ 28 files changed, 1701 insertions(+), 10 deletions(-) Requirements updates -------------------- diff --git a/molecule-requirements.txt b/molecule-requirements.txt index 83b94e2..6dc9c35 100644 --- a/molecule-requirements.txt +++ b/molecule-requirements.txt @@ -2,2 +2,2 @@ -ansi2html -ansible +ansi2html>=1.6.0 +ansible>=2.4.0 @@ -6,6 +6,6 @@ molecule>=3.0,<3.1 -pytest -pytest-cov -pytest-html -pytest-xdist -selinux # MIT -lxml # BSD +pytest>=5.1.2 +pytest-cov>=2.10.1 +pytest-html>=2.1.1 # MPL 2.0 +pytest-xdist>=1.34.0 +selinux>=0.2.1 # MIT +lxml>=4.5.2 # BSD