tripleo-quickstart-extras/roles/collect-logs/templates/get_host_info.sh.j2

60 lines
2.2 KiB
Django/Jinja

#!/bin/bash
echo "This script will be deprecated in favor of collect-logs files"
set -x
export PATH=$PATH:/sbin
ps -eaufxZ
ls -Z /var/run/
df -h
uptime
sudo netstat -lpn
sudo iptables-save
sudo ovs-vsctl show
ip addr
ip route
ip -6 route
free -h
top -n 1 -b -o RES
rpm -qa | sort
yum repolist -v
sudo os-collect-config --print
which pcs &> /dev/null && sudo pcs status --full
which pcs &> /dev/null && sudo pcs constraint show --full
which pcs &> /dev/null && sudo pcs stonith show --full
which crm_verify &> /dev/null && sudo crm_verify -L -VVVVVV
which ceph &> /dev/null && sudo ceph status
sudo facter
find ~jenkins -iname tripleo-overcloud-passwords -execdir cat '{}' ';'
sudo systemctl list-units --full --all
if [ -e /home/{{ undercloud_user }}/stackrc ] ; then
bash <<-EOF &>/var/log/postci.txt
source /home/{{ undercloud_user }}/stackrc
openstack <<-EOC
server list -f yaml
workflow list -f yaml
workflow execution list -f yaml
EOC
# If there's no overcloud then there's no point in continuing
openstack stack list | grep -q overcloud
if [ $? -eq 1 ]; then
echo 'No active overcloud found'
exit 0
fi
openstack <<-EOC
stack show overcloud -f yaml
stack resource list -n5 overcloud -f yaml
stack event list overcloud -f yaml
EOC
# --nested-depth 2 seems to get us a reasonable list of resources without
# taking an excessive amount of time
openstack stack event list --nested-depth 2 -f json overcloud | /tmp/heat-deploy-times.py | tee /var/log/heat-deploy-times.log || echo 'Failed to process resource deployment times. This is expected for stable/liberty.'
# useful to see what failed when puppet fails
# NOTE(bnemec): openstack stack failures list only exists in Newton and above.
# On older releases we still need to manually query the deployments.
openstack stack failures list --long overcloud || for failed_deployment in \$(heat resource-list --nested-depth 5 overcloud | grep FAILED | grep 'StructuredDeployment ' | cut -d '|' -f3); do heat deployment-show \$failed_deployment; done;
# NOTE(emilien) "openstack overcloud failures" was introduced in Rocky
openstack overcloud failures || true
EOF
fi