
This adds support for Browbeat to run as a oooq role none of the playbooks or the roles located in ansible/oooq are usable if called without oooq, so maybe they should go in the ci-scripts folder. Change-Id: Iefcae69af591a790bdeb4acc3c85e75292b6b8ce
18 lines
608 B
YAML
18 lines
608 B
YAML
---
|
|
# Checks the cloud for known bugs and produces a bug report
|
|
# not functional on osp8 or earlier, therefore errors are ignored
|
|
|
|
- name: Check Cloud for Bugs
|
|
shell:
|
|
"cd {{ ansible_env.HOME }}/browbeat/ansible; \
|
|
ansible-playbook -i hosts \
|
|
--extra-vars @{{ ansible_env.HOME }}/browbeat/ci-scripts/config/tripleo/oooq/all.yml \
|
|
check/site.yml > {{ ansible_env.HOME }}/browbeat/results/check.log"
|
|
register: check_run
|
|
ignore_errors: true
|
|
until: check_run.rc == 0
|
|
retries: 2
|
|
delay: 60
|
|
environment:
|
|
ANSIBLE_SSH_ARGS: "-F {{ ansible_env.HOME }}/browbeat/ansible/ssh-config"
|