
This adds needed roles, playbooks and secrets for our global base jobs. Change-Id: I466bc1b8b33ea806f0ec39aa9aca32b91e28e7f1
22 lines
548 B
YAML
22 lines
548 B
YAML
- hosts: localhost
|
|
roles:
|
|
- role: add-fileserver
|
|
fileserver: "{{ site_logs }}"
|
|
- role: ara-report
|
|
|
|
- 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:
|
|
# TODO do we want to assume subunit on opendev or should this move
|
|
# into tenant config
|
|
- submit-logstash-jobs
|
|
- submit-subunit-jobs
|