summaryrefslogtreecommitdiffstats
path: root/deploy/check_os_progress.sh
blob: fe4525039560d297da5b22c0518d9a2dcf1ac8db (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
#!/bin/bash
usage()
{
    cat << EOF
USAGE: `basename $0` [-d deploy_env] [-n hosts_num]

OPTIONS:
  -d deploy environment of daisy(0:virtual or 1:baremetal)
  -n target node numbers

EXAMPLE:
    sudo `basename $0` -d 1 -n 5
EOF
}

while getopts "d:n:h" OPTION
do
    case $OPTION in
        d)
            deploy_env=${OPTARG}
            ;;
        n)
            hosts_num=${OPTARG}
            ;;
        h)
            usage
            exit 0
            ;;
        *)
            echo "${OPTION} is not a valid argument"
            usage
            exit 0
            ;;
    esac
done

source /root/daisyrc_admin
cluster_id=`daisy cluster-list | awk -F "|" '{print $2}' | sed -n '4p' | tr -d " "`
hosts_id=`daisy host-list | awk -F "|" '{print $2}'| grep -o "[^ ]\+\( \+[^ ]\+\)*"|tail -n +2`
if [ $deploy_env == 0 ];then
    for host_id in $hosts_id
    do
        echo "detail info of host $host_id:"
        daisy host-detail $host_id
    done
fi

echo "check os installing progress..."
maxcount=180
count=0
while true; do
    if [ $count -gt $maxcount ]; then
        echo "It took too long to install the os, exit 1."
        exit 1
    fi
    count=$[count + 1]

    os_install_active=`daisy host-list --cluster-id $cluster_id | awk -F "|" '{print $8}' | grep -c "active" `
    os_install_failed=`daisy host-list --cluster-id $cluster_id | awk -F "|" '{print $8}' | grep -c "install-failed" `
    if [ $os_install_active -eq $hosts_num ]; then
        echo "os installing successful ..."
        break
    elif [ $os_install_failed -gt 0 ]; then
        echo "os installing have failed..."
        echo "this is the daisy api log"
        cat /var/log/daisy/api.log |grep -v wsgi
        exit 1
    else
        progress=`daisy host-list --cluster-id $cluster_id |grep DISCOVERY_SUCCESSFUL |awk -F "|" '{print $7}'|sed s/[[:space:]]//g|sed ':a;N;$ s/\n/ /g;ba'`
        echo "os in installing, the progress of each node is $progress%"
        sleep 30
    fi
done
systemctl disable dhcpd
systemctl stop dhcpd