summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-07-25 17:07:47 +0000
committerGerrit Code Review <review@openstack.org>2022-07-25 17:07:47 +0000
commite98d51502ebd56aa1127f8ca01b93f6e3d1ba9a8 (patch)
tree752fdefe774f72b623997b49c76e675b2e7ce7d7
parent9f66a95aa7e9594800a7a9caedc27c8f67318238 (diff)
parent8c95131d81c1b12adb7e0fd758bc236017d20db7 (diff)
downloadironic-e98d51502ebd56aa1127f8ca01b93f6e3d1ba9a8.tar.gz
Merge "CI: Save routing table information for troubleshooting"
-rw-r--r--playbooks/ci-workarounds/get_extra_logging.yaml8
1 files changed, 8 insertions, 0 deletions
diff --git a/playbooks/ci-workarounds/get_extra_logging.yaml b/playbooks/ci-workarounds/get_extra_logging.yaml
index 29454585a..3e9115fae 100644
--- a/playbooks/ci-workarounds/get_extra_logging.yaml
+++ b/playbooks/ci-workarounds/get_extra_logging.yaml
@@ -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