Merge "CI: Enable bare metal testing for Ubuntu"

This commit is contained in:
Zuul 2022-02-14 17:46:53 +00:00 committed by Gerrit Code Review
commit 5824178d3e
2 changed files with 1 additions and 6 deletions

View File

@ -35,9 +35,3 @@
cmd: dev/overcloud-test-baremetal.sh &> {{ logs_dir }}/ansible/overcloud-test-baremetal
chdir: "{{ kayobe_src_dir }}"
executable: /bin/bash
# FIXME(mgoddard): Bare metal testing is unreliable on Ubuntu - some jobs
# see IPMI failures such as the following:
# ipmitool chassis bootdev pxe
# Error setting Chassis Boot Parameter 5\nError setting Chassis Boot
# Parameter 0\n
when: ansible_os_family != 'Debian'

View File

@ -39,6 +39,7 @@ copy_logs() {
if [[ -x "$(command -v journalctl)" ]]; then
journalctl --no-pager > ${LOG_DIR}/system_logs/syslog.txt
journalctl --no-pager -u docker.service > ${LOG_DIR}/system_logs/docker.log
journalctl --no-pager -u vbmcd.service > ${LOG_DIR}/system_logs/vbmcd.log
else
cp /var/log/upstart/docker.log ${LOG_DIR}/system_logs/docker.log
fi