Markos Chandras 8e3c5c272a test-distro_install-vars: Add new var file for distro installations
When we test distro installations we should install all components from
distro packages in order to ensure that we are not mixing PIP and distro
packages if more than one service is deployed on the same host or
container. As such, we add a new file to override the default 'source'
installation option which can be used by distro_install jobs and tox
environments to test that scenario.

Change-Id: I15d4243e89f8800e42723b0fdf2c5bf59e2f7608
Implements: blueprint openstack-distribution-packages
2018-06-08 16:45:46 +01:00
2018-03-15 07:42:10 +00:00
2018-03-26 18:18:05 +01:00
2018-04-11 13:49:00 +02:00
2018-04-11 13:58:50 +02:00
2016-05-26 11:33:41 +01:00
2018-03-03 12:25:23 +08:00
2017-03-02 11:52:36 +00:00
2018-06-02 18:58:08 -05:00
2018-03-07 16:02:33 -06:00
2016-05-20 14:53:54 +01:00
2018-03-26 18:18:05 +01:00

Team and repository tags

image

OpenStack-Ansible testing

This is the openstack-ansible-tests repository, providing a framework and consolidation of testing configuration and playbooks. This can be used to integrate new projects, and ensure that code duplication is minimized whilst allowing the addition of new testing scenarios with greater ease.

Role Integration

To enable the openstack-ansible-tests repository, ensure that the tox.ini configuration in the role repository matches the galera_client repository tox.ini with the exception of the value for ROLE_NAME. A more advanced configuration which implements multiple functional test scenarios is available in the neutron role tox.ini.

To override variables you can create a ${rolename}-overrides.yml file inside the role's tests folder. This variable file can be includes in the functional tox target configuration in tox.ini as demonstrated in the following extract:

ansible-playbook -i {toxinidir}/tests/inventory \
                 -e @{toxinidir}/tests/${rolename}-overrides.yml \
                 {toxinidir}/tests/test.yml -vvvv

In your repositories tests/test.yml file, you can call any of the included playbooks, for example:

- include: common/test-prepare-keys.yml

Network Settings

The networking can be configured and setup using the bridges variable.

The base option, when only 1 interface is required is to specify just a single base - this is only for backwards compatibility with existing test setup and will default to br-mgmt with an IP of 10.1.0.1.

bridges:
  - "br-mgmt"

To allow a more complicated network setup we can specify ip_addr: The IP address on the interface. netmask: Netmask of the interface (defaults to 255.255.255.0) name: Name of the interface veth_peer: Set up a veth peer for the interface alias: Add an alias IP address

For example, a Nova setup may look like this:

bridges:
  - name: "br-mgmt"
    ip_addr: "10.1.0.1"
  - name: "br-vxlan"
    ip_addr: "10.1.1.1"
  - name: "br-vlan"
    ip_addr: "10.1.2.200"
    veth_peer: "eth12"
    alias: "10.1.2.1"
Description
DEPRECATED, Common testing content for OpenStack-Ansible
Readme 11 MiB