tripleo-quickstart-extras/playbooks/multinode-validate.yml
Quique Llorente 1c111804a8 Run validate-services before tempest
Some of the actions done at tempest like create a vm instance restart
some sidecar containers and they appear as failed containers since the
purpose of validate_services is to check them after deploy running
before tempest would be good enough.

Change-Id: I750e4d2ffc139433f7ec2a9a5c4adc6467ad19c9
Closes-Bug: #1824977
2019-04-17 12:37:09 +02:00

22 lines
571 B
YAML

---
- name: setup dstat performance monitoring
hosts: overcloud
tags:
- overcloud-validate
roles:
- {role: validate-perf,
when: validate_performance|bool and run_tempest|bool}
ignore_errors: true
# Validate the deployment
- name: validate the overcloud
hosts: undercloud
tags:
- overcloud-validate
- undercloud-validate
gather_facts: false
roles:
- {role: validate-simple, when: test_ping|bool}
- {role: validate-services, when: validate_services|default(false)|bool}
- {role: validate-tempest, when: run_tempest|bool}