![Major Hayden](/assets/img/avatar_default.png)
This patch contains five combined improvements. 1) Remove RabbitMQ from the gate RabbitMQ is only needed in the swift gate if the ceilometer middleware is being deloyed. This isn't enabled in the gate job, so let's save some time and deploy memcached/galera without RabbitMQ. 2) Bindep pyOpenSSL change This commit also includes the pyOpenSSL bindep change in the hopes that we can get the swift gate moving along again. ;) 3) Disable erasure code test for CentOS Due to #1707220 we are running into issues with CentOS 7 running Erasure Code storage policies on RAX hardware. This patch temoprarily disables EC testing for CentOS 7, but we can re-enable that once the package is backported to stable/ocata branch. 4) Pass packages as a list This patch passes a list of packages to the package module rather than using "with_items" and it should speed up the package installation process. 5) Set package state to present Change-Id: Ic7b13853ce00b0f8ac2181e46e2bd8dea5ce377e Co-Authored-By: Andy McCrae <andy.mccrae@gmail.com>
66 lines
2.5 KiB
Plaintext
66 lines
2.5 KiB
Plaintext
# This file facilitates OpenStack-CI package installation
|
|
# before the execution of any tests.
|
|
#
|
|
# See the following for details:
|
|
# - http://docs.openstack.org/infra/bindep/
|
|
# - https://git.openstack.org/cgit/openstack-infra/bindep
|
|
#
|
|
# Even if the role does not make use of this facility, it
|
|
# is better to have this file empty, otherwise OpenStack-CI
|
|
# will fall back to installing its default packages which
|
|
# will potentially be detrimental to the tests executed.
|
|
#
|
|
# Note:
|
|
# This file is maintained in the openstack-ansible-tests repository.
|
|
# https://git.openstack.org/cgit/openstack/openstack-ansible-tests/tree/bindep.txt
|
|
# If you need to remove or add extra dependencies, you should modify
|
|
# the central file instead and once your change is accepted then update
|
|
# this file as well. The purpose of this file is to ensure that Python and
|
|
# Ansible have all their necessary binary requirements on the test host before
|
|
# tox executes. Any binary requirements needed by services/roles should be
|
|
# installed by those roles in their applicable package install tasks, not through
|
|
# using this file.
|
|
#
|
|
|
|
# Base requirements for Ubuntu
|
|
build-essential [platform:dpkg]
|
|
git-core [platform:dpkg]
|
|
libssl-dev [platform:dpkg]
|
|
libffi-dev [platform:dpkg]
|
|
python2.7 [platform:dpkg]
|
|
python-apt [platform:dpkg]
|
|
python-dev [platform:dpkg]
|
|
python3 [platform:dpkg]
|
|
python3-apt [platform:dpkg]
|
|
python3-dev [platform:dpkg]
|
|
|
|
# Base requirements for RPM distros
|
|
gcc [platform:rpm]
|
|
gcc-c++ [platform:rpm]
|
|
git [platform:rpm]
|
|
libffi-devel [platform:rpm !platform:opensuseproject-42]
|
|
libffi-devel-gcc5 [platform:opensuseproject-42]
|
|
openssl-devel [platform:redhat]
|
|
libopenssl-devel [platform:suse]
|
|
python-devel [platform:rpm]
|
|
python2-dnf [platform:fedora]
|
|
|
|
# For SELinux
|
|
libselinux-python [platform:redhat]
|
|
libsemanage-python [platform:redhat]
|
|
|
|
# For SSL SNI support
|
|
python-pyasn1 [platform:dpkg platform:suse]
|
|
python-openssl [platform:dpkg]
|
|
python-ndg-httpsclient [platform:ubuntu !platform:ubuntu-14]
|
|
python2-pyasn1 [platform:redhat]
|
|
pyOpenSSL [platform:redhat]
|
|
python-pyOpenSSL [platform:opensuseproject-42]
|
|
python2-pyOpenSSL [platform:suse !platform:opensuseproject-42]
|
|
python-ndg_httpsclient [platform:redhat !platform:fedora]
|
|
python2-ndg_httpsclient [platform:fedora]
|
|
python-ndg-httpsclient [platform:suse]
|
|
|
|
# Required for compressing collected log files in CI
|
|
gzip
|