9cee53835e
We need to move 'gabbi_tempest_path' var to gabbi-tempest plugin jobs side which is the only place it is being used. This var is specific to gabbi-tempest not used for any other devstack-tempest jobs so defining it in devstack-tempest base job is not the correct way. We might face issue like bug#1821072 again in future which can end up blocking all gate jobs. Below patch is moving this var to gabbi-tempest plugin. - https://review.opendev.org/#/c/705339/ Change-Id: Id96e9b3f1271fce50aae982fdf12871693107e1d Closes-Bug: #1861592
20 lines
791 B
YAML
20 lines
791 B
YAML
# Changes that run through devstack-tempest-ipv6 are likely to have an impact on
|
|
# the devstack part of the job, so we keep devstack in the main play to
|
|
# avoid zuul retrying on legitimate failures.
|
|
- hosts: all
|
|
roles:
|
|
- orchestrate-devstack
|
|
|
|
# We run tests only on one node, regardless how many nodes are in the system
|
|
- hosts: tempest
|
|
roles:
|
|
- setup-tempest-run-dir
|
|
- setup-tempest-data-dir
|
|
- acl-devstack-files
|
|
# Verify the IPv6-only deployments. This role will perform check for
|
|
# IPv6 only env for example Devstack IPv6 settings and services listen
|
|
# address is IPv6 etc. This is invoked before tests are run so that we can
|
|
# fail early if anything missing the IPv6 settings or deployments.
|
|
- ipv6-only-deployments-verification
|
|
- run-tempest
|