* push logs to a swift storage with an automatic expiration * call the publish part only once * make rsync --quiet for a more compact playbook output * make rsync upload optional * fix full_logs template to include a slash at the end of the URL, needed by the os-loganalyze server * document new settings Change-Id: If3dc99cce2b4386e9ed0ed1c47c7f4098ec43e5a
15 lines
277 B
YAML
15 lines
277 B
YAML
---
|
|
# tasks file for ansible-role-tripleo-collect-logs
|
|
|
|
- name: Collect logs
|
|
include: collect.yml
|
|
when: artcl_collect|bool
|
|
|
|
- name: Generate docs
|
|
include: create-docs.yml
|
|
when: artcl_gen_docs|bool
|
|
|
|
- name: Publish logs
|
|
include: publish.yml
|
|
when: artcl_publish|bool
|