Merge "CI: Save routing table information for troubleshooting"

This commit is contained in:
Zuul 2022-07-25 17:07:47 +00:00 committed by Gerrit Code Review
commit e98d51502e
1 changed files with 8 additions and 0 deletions

View File

@ -6,3 +6,11 @@
- name: Get network connection information for ironic process
shell: "netstat -apn > {{ zuul_output_dir }}/logs/post-job-network-connections.txt"
become: yes
- name: Get routing table, IPv4
shell: "ip -4 route > {{ zuul_output_dir }}/logs/post-job-network-routes-v4.txt"
ignore_errors: True
become: yes
- name: Get routing table, IPv6
shell: "ip -6 route > {{ zuul_output_dir }}/logs/post-job-network-routes-v6.txt"
ignore_errors: True
become: yes