Change folder which we upload logs into

Use logs folder on logging server to better organize node folders.

Change-Id: If99150aa02b2cb7ef64b15b23545ee80eefdd603
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-03-04 14:32:30 -05:00
parent 382d18cee2
commit 539d96b5a5
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
1 changed files with 13 additions and 6 deletions

View File

@ -1,8 +1,15 @@
- hosts: localhost
tasks:
- name: Ensure logs directory exists
file:
path: "{{ zuul.executor.log_root }}/logs"
state: directory
- hosts: gear01
tasks:
- name: Collect gear log files
synchronize:
dest: "{{ zuul.executor.log_root }}/gear01"
dest: "{{ zuul.executor.log_root }}/logs/gear01"
mode: pull
rsync_opts:
- "--relative"
@ -16,7 +23,7 @@
tasks:
- name: Collect nodepool log files
synchronize:
dest: "{{ zuul.executor.log_root }}/nb01"
dest: "{{ zuul.executor.log_root }}/logs/nb01"
mode: pull
rsync_opts:
- "--relative"
@ -33,7 +40,7 @@
tasks:
- name: Collect nl01 log files
synchronize:
dest: "{{ zuul.executor.log_root }}/nl01"
dest: "{{ zuul.executor.log_root }}/logs/nl01"
mode: pull
rsync_opts:
- "--relative"
@ -49,7 +56,7 @@
tasks:
- name: Collect ze01 log files
synchronize:
dest: "{{ zuul.executor.log_root }}/ze01"
dest: "{{ zuul.executor.log_root }}/logs/ze01"
mode: pull
rsync_opts:
- "--relative"
@ -66,7 +73,7 @@
tasks:
- name: Collect zm01 log files
synchronize:
dest: "{{ zuul.executor.log_root }}/zm01"
dest: "{{ zuul.executor.log_root }}/logs/zm01"
mode: pull
rsync_opts:
- "--relative"
@ -83,7 +90,7 @@
tasks:
- name: Collect zs01 log files
synchronize:
dest: "{{ zuul.executor.log_root }}/zs01"
dest: "{{ zuul.executor.log_root }}/logs/zs01"
mode: pull
rsync_opts:
- "--relative"