454f79ae1e
We don't want to fail a passing job because we are unable to process logstash requests. Change-Id: I9e356067fc317626c6473988d37f0815d3be17a4 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
20 lines
449 B
YAML
20 lines
449 B
YAML
- hosts: localhost
|
|
roles:
|
|
- role: add-fileserver
|
|
fileserver: "{{ site_logs }}"
|
|
- emit-ara-html
|
|
|
|
- hosts: "{{ site_logs.fqdn }}"
|
|
gather_facts: False
|
|
roles:
|
|
- role: upload-logs
|
|
zuul_log_url: "http://logs.openstack.org"
|
|
|
|
- hosts: localhost
|
|
# NOTE(pabelanger): We ignore_errors for the following tasks as not to fail
|
|
# successful jobs.
|
|
ignore_errors: yes
|
|
roles:
|
|
- submit-logstash-jobs
|
|
- submit-subunit-jobs
|