Test change to upload-logs

This tests the change in https://review.openstack.org/556877

Change-Id: I2dfdb858b4ea1ecceabcb6064b3515ad90dbba72
This commit is contained in:
James E. Blair 2018-03-27 08:09:32 -07:00
parent 2d1f8c5182
commit 28a3f190c8
4 changed files with 11 additions and 2 deletions

View File

@ -7,7 +7,7 @@
- hosts: "{{ site_logs.fqdn }}"
gather_facts: False
roles:
- role: upload-logs
- role: test-upload-logs
zuul_log_url: "http://logs.openstack.org"
- hosts: localhost

View File

@ -13,6 +13,14 @@ This uploads logs to a static webserver using SSH.
The root path to the logs on the logserver.
.. zuul:rolevar:: zuul_log_verbose
:default: false
The synchronize task in this role outputs a lot of information. By
default, no_log is set to avoid overwhelming a reader of the logs.
Set this to true to disable that behavior if it becomes necessary
to debug this role.
.. zuul:rolevar:: zuul_site_upload_logs
:default: true

View File

@ -29,7 +29,7 @@
rsync_opts:
- "--exclude=job-output.txt"
- "--exclude=job-output.json"
no_log: true
no_log: "{{ not zuul_log_verbose }}"
# After this point there are no more logs
- name: gzip console log and json output

View File

@ -1 +1,2 @@
zuul_logserver_root: /srv/static/logs
zuul_log_verbose: false