Fix role name to validate-tempest in role files

There are leftovers of tripleo-tempest role name in files,
which causes errors in quickstart installation, fix all of them
to be validate-tempest.

Change-Id: I29f6d9f9ed0dd357dc642f7c47b47f7712d73661
This commit is contained in:
Sagi Shnaidman 2017-06-21 18:47:56 +03:00
parent 30cf0742e0
commit 3c9941e5c0
5 changed files with 2 additions and 28 deletions

View File

@ -1,4 +1,4 @@
ansible-role-tripleo-tempest
validate-tempest
=========
Run tempest tests on undercloud or overcloud.
@ -92,7 +92,7 @@ Example Playbook
hosts: undercloud
gather_facts: no
roles:
- tripleo-tempest
- validate-tempest
License
-------

View File

@ -1,6 +1,4 @@
---
# tasks file for ansible-role-tripleo-tempest
- name: Set the number of workers in tempest
set_fact:
tempest_workers: "{{ ansible_processor_count|int // 2 }}"

View File

@ -1,6 +1,4 @@
---
# tasks file for ansible-role-tripleo-tempest-undercloud
- name: Add fake driver to Ironic config
become: yes
lineinfile:

View File

@ -1 +0,0 @@
localhost

View File

@ -1,21 +0,0 @@
---
# When you want to run tempest against the Undercloud,
# make sure you disable tempest against the overcloud too
- name: Run tempest against the Undercloud
hosts: undercloud
gather_facts: no
roles:
- { role: ansible-role-tripleo-tempest,
tempest_undercloud: true,
tempest_overcloud: false,
test_regex: 'tempest\.api\.baremetal.*'}
# The test_regex here is an example on how to run a specific
# test on the overcloud.
# The default regex is 'smoke' tests
- name: Run tempest against the Overcloud
hosts: undercloud
gather_facts: no
roles:
- { role: ansible-role-tripleo-tempest,
test_regex: 'tempest\.api\.compute\.test_quotas'}