47b4242613
Cleanup collected artifacts, drop unrelated files/commands. Always install gitinfos script to binaries for external use. Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
70 lines
1.8 KiB
YAML
70 lines
1.8 KiB
YAML
---
|
|
- hosts: all
|
|
become: true
|
|
gather_facts: no
|
|
|
|
vars:
|
|
debug: false
|
|
commands:
|
|
- name: git_info
|
|
cmd: find . -type d -name .git -execdir sh -c 'gen-gitinfos.sh global|head -12' \;
|
|
- name: timedate_info
|
|
cmd: timedatectl status
|
|
- name: space_info
|
|
cmd: df -h
|
|
- name: kernel_info
|
|
cmd: uname -r
|
|
- name: distro_info
|
|
cmd: cat /etc/issue.net
|
|
- name: docker_info
|
|
cmd: docker info
|
|
- name: ip_info
|
|
cmd: ip -4 -o a
|
|
- name: route_info
|
|
cmd: ip ro
|
|
- name: proc_info
|
|
cmd: ps auxf | grep -v ]$
|
|
- name: systemctl_info
|
|
cmd: systemctl status
|
|
- name: systemctl_failed_info
|
|
cmd: systemctl --state=failed --no-pager
|
|
- name: k8s_info
|
|
cmd: kubectl get all --all-namespaces -o wide
|
|
- name: errors_info
|
|
cmd: journalctl -p err --utc --no-pager
|
|
|
|
logs:
|
|
- /var/log/ansible.log
|
|
- /var/log/ansible/ansible.log
|
|
- /var/log/syslog
|
|
- /var/log/daemon.log
|
|
- /var/log/kern.log
|
|
- inventory/inventory.ini
|
|
- cluster.yml
|
|
|
|
tasks:
|
|
- name: Storing commands output
|
|
shell: "{{ item.cmd }} 2>&1 | tee {{ item.name }}"
|
|
register: output
|
|
ignore_errors: true
|
|
with_items: "{{commands}}"
|
|
|
|
- debug: var=item
|
|
with_items: output.results
|
|
when: debug
|
|
|
|
- name: Fetch results
|
|
fetch: src={{ item.name }} dest=/tmp/collect-info/commands
|
|
with_items: "{{commands}}"
|
|
|
|
- name: Fetch logs
|
|
fetch: src={{ item }} dest=/tmp/collect-info/logs
|
|
with_items: "{{logs}}"
|
|
|
|
- name: Pack results and logs
|
|
local_action: shell GZIP=-9 tar --remove-files -cvzf logs.tar.gz -C /tmp collect-info
|
|
run_once: true
|
|
|
|
- name: Clean up collected command outputs
|
|
file: path={{ item.name }} state=absent
|
|
with_items: "{{commands}}"
|