blob: 93050701c28745cb51d4144e23fdd6cd8e37d0a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#!/usr/bin/env bash
# Utility Functions used by OPNFV Apex
# author: Tim Rozet (trozet@redhat.com)
SSH_OPTIONS=(-o StrictHostKeyChecking=no -o GlobalKnownHostsFile=/dev/null -o UserKnownHostsFile=/dev/null -o LogLevel=error)
##connects to undercloud
##params: user to login with, command to execute on undercloud (optional)
function undercloud_connect {
local user=$1
if [ -z "$1" ]; then
echo "Missing required argument: user to login as to undercloud"
return 1
fi
if [ -z "$2" ]; then
ssh ${SSH_OPTIONS[@]} ${user}@$(arp -a | grep $(virsh domiflist undercloud | grep default |\
awk '{print $5}') | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+")
else
ssh ${SSH_OPTIONS[@]} -T ${user}@$(arp -a | grep $(virsh domiflist undercloud | grep default \
| awk '{print $5}') | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+") "$2"
fi
}
##connects to overcloud nodes
##params: node to login to, command to execute on overcloud (optional)
function overcloud_connect {
local node
local node_output
local node_ip
if [ -z "$1" ]; then
echo "Missing required argument: overcloud node to login to"
return 1
elif ! echo "$1" | grep -E "(controller|compute)[0-9]+" > /dev/null; then
echo "Invalid argument: overcloud node to login to must be in the format: \
controller<number> or compute<number>"
return 1
fi
node_output=$(undercloud_connect "stack" "source stackrc; nova list")
node=$(echo "$1" | sed -E 's/([a-zA-Z]+)([0-9]+)/\1-\2/')
node_ip=$(echo "$node_output" | grep "$node" | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+")
if [ "$node_ip" == "" ]; then
echo -e "Unable to find IP for ${node} in \n${node_output}"
return 1
fi
if [ -z "$2" ]; then
ssh ${SSH_OPTIONS[@]} heat-admin@${node_ip}
else
ssh ${SSH_OPTIONS[@]} -T heat-admin@${node_ip} "$2"
fi
}
##outputs heat stack deployment failures
##params: none
function debug_stack {
local failure_output
local phys_id
declare -a resource_arr
declare -a phys_id_arr
source ~/stackrc
IFS=$'\n'
for resource in $(heat resource-list -n 5 overcloud | grep FAILED); do
unset IFS
resource_arr=(${resource//|/ })
phys_id=$(heat resource-show ${resource_arr[-1]} ${resource_arr[0]} | grep physical_resource_id 2> /dev/null)
if [ -n "$phys_id" ]; then
phys_id_arr=(${phys_id//|/ })
failure_output+="******************************************************"
failure_output+="\n${resource}:\n\n$(heat deployment-show ${phys_id_arr[-1]} 2> /dev/null)"
failure_output+="\n******************************************************"
fi
unset phys_id
done
echo -e $failure_output
}
|