puppet-openstack-integration/playbooks/run-integration-tests.yaml
Wes Hayutin e8fe5bae37 keystone only puppet deployment
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
2021-04-21 21:26:11 +09:00

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 }}'