e8fe5bae37
While evaluating new versions of a base operating system it is handy to have a very minimal deployment. * configure_[images,networks] turned off * tempest api tests only for keystone Match TripleO's scenario000 deployment: https://bit.ly/3tBNBor Change-Id: Ie7ebee89b1ca00ca2fc50b7d1cbd2d8364daca46
16 lines
468 B
YAML
16 lines
468 B
YAML
- hosts: all
|
|
tasks:
|
|
- shell:
|
|
cmd: |
|
|
set -ex
|
|
trap "./copy_logs.sh" EXIT
|
|
export CEPH_VERSION={{ ceph }}
|
|
export PUPPET_MAJ_VERSION={{ puppet }}
|
|
export SCENARIO={{ scenario }}
|
|
export GEM_HOME=`pwd`/.bundled_gems
|
|
./run_tests.sh
|
|
executable: /bin/bash
|
|
chdir: '{{ ansible_user_dir }}/workspace/puppet-openstack-integration'
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|
|
|