tripleo-quickstart-extras/playbooks/quickstart-extras-validate.yml
Wes Hayutin e1cee6df04 add a very simple tripleo-ui validation
The tripleo-ui should always work out of the box.
Let's take a few basic steps to make sure that is
the case.

Change-Id: Ie320cf86a6d6d2bc810221e18f4be5e029c26df2
2017-10-24 14:49:58 -04:00

27 lines
681 B
YAML

# Validate the deployment
- name: validate the overcloud
hosts: undercloud
tags:
- overcloud-validate
gather_facts: no
roles:
- { role: validate-simple, when: test_ping|bool }
# Execute tempest against the overcloud deployment
- name: Execute tempest against the overcloud
hosts: undercloud
tags:
- overcloud-validate
gather_facts: no
roles:
- { role: validate-tempest, when: tempest_config|bool or run_tempest|bool }
# Execute simple TripleO-UI validations
- name: Execute simple TripleO-UI validations
hosts: localhost
tags:
- tripleoui-validate
gather_facts: yes
roles:
- { role: validate-ui, when: validate_ui_simple|bool }