tripleo-quickstart-extras/roles/tripleo-validations
Gael Chamoulaud 86ac8c0ac9 Remove workaround for LP#1701239 bug
The bug [1] has been fixed and released, so this patch removes the workaround.

[1] - https://bugs.launchpad.net/tripleo/+bug/1701239

Change-Id: Icf598f0d99b2518c3e7c3d4d746aac72661bae0d
Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
2017-11-08 12:14:44 +00:00
..
defaults Add new role for tripleo-validations 2017-07-24 07:59:00 +00:00
meta Add new role for tripleo-validations 2017-07-24 07:59:00 +00:00
tasks Add new role for tripleo-validations 2017-07-24 07:59:00 +00:00
templates Remove workaround for LP#1701239 bug 2017-11-08 12:14:44 +00:00
README.md Add new role for tripleo-validations 2017-07-24 07:59:00 +00:00

Tripleo-validations

An Ansible role to setup tripleo-validations

Requirements

This playbook expects that the undercloud has been installed.

Role Variables

  • working_dir: <'/home/stack'> -- working directory for the role.
  • run_tripleo_validations: -- to setup and run tripleo-validations tests
  • run_tripleo_validations_negative_tests: to run negative tests
  • run_tripleo_validations_setup: -- to setup or not tripleo-validations
  • exit_on_validations_failure: -- Exit tripleo-quickstart on validations failure
  • validations_group: <[]> -- The validation group name which should be 'pre-introspection', 'pre-deployment' or 'post-deployment'

Dependencies

No dependencies.

Example Playbook

Run the tripleo-validations setup only:

- hosts: undercloud
  vars:
    run_tripleo_validations_setup: True
  roles:
     - { role: tripleo-validations, when: run_tripleo_validations|bool }

Run the tripleo-validations tests belonging to the pre-introspection group:

- hosts: undercloud
  vars:
    validations_group: ['pre-introspection']
  roles:
     - { role: tripleo-validations, when: run_tripleo_validations|bool }

Run pre-introspection negative tests

- hosts: undercloud
  vars:
    validations_group: ['pre-introspection']
  roles:
     - { role: tripleo-validations, when: run_tripleo_validations_negative_tests|bool }

License

Apache 2.0

Author Information

RDO-CI Team