
This cleanup playbook is used as a last effort to grab debugging info from hosts that might othewise be missed if we run out of disk space or have other problems. Using the raw module we ssh in and get df output as well as ip link and ip addr output for all jobs in the cleanup phase. Because cleanup runs after the post playbook this info is only captured in the executor logs. Depends-On: https://review.opendev.org/#/c/681552/ Change-Id: Ib5d2cb1dab4da8a9a6d0f3e1721fff395b564044
17 lines
340 B
YAML
17 lines
340 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Gather debug info on job fail
|
|
when: not (zuul_success | bool)
|
|
block:
|
|
- name: get df disk usage
|
|
raw: df
|
|
|
|
- name: get df inode usage
|
|
raw: df -i
|
|
|
|
- name: get l2 networking
|
|
raw: ip link
|
|
|
|
- name: get l3 networking
|
|
raw: ip addr
|