90bb494647
This commit sets the variables for network creation to the appropriate values. Since the network details are internal, this CI variables file is being moved to internal git. Change-Id: Ib55d2896991c74562f01e3cc56117af7110dc403
17 lines
516 B
YAML
17 lines
516 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 \
|
|
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"
|