aboutsummaryrefslogtreecommitdiffstats
path: root/legacy/docker/prepare_qtip_image.sh
blob: 4095c806e045dc6dba99f36ccd47520c0be84b5d (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
#!/bin/bash
IMGNAME='QTIP_CentOS.qcow2'
IMGPATH='/home/opnfv/imgstore'
IMGURL='http://build.opnfv.org/artifacts.opnfv.org/qtip/QTIP_CentOS.qcow2'

load_image()
{
    if [[ -n $( glance image-list | grep -e QTIP_CentOS) ]]; then
        return
    fi

    test -d $IMGPATH || mkdir -p $IMGPATH
    if [[ ! -f "$IMGPATH/$IMGNAME" ]];then
        echo
        echo "========== Downloading QTIP_CentOS image =========="
        cd $IMGPATH
        wget -c --progress=dot:giga $IMGURL
    fi

    echo
    echo "========== Loading QTIP_CentOS image =========="
    output=$(glance image-create \
        --name QTIP_CentOS \
        --visibility public \
        --disk-format qcow2 \
        --container-format bare \
        --file $IMGPATH/$IMGNAME )
    echo "$output"

    IMAGE_ID=$(echo "$output" | grep " id " | awk '{print $(NF-1)}')

    if [ -z "$IMAGE_ID" ]; then
        echo 'Failed uploading QTIP_CentOS image to cloud'.
        exit 1
    fi

    echo "QTIP_CentOS image id: $IMAGE_ID"
}

rm -rf ${QTIP_DIR}/openrc

${REPOS_DIR}/releng/utils/fetch_os_creds.sh \
-d ${QTIP_DIR}/openrc \
-i ${INSTALLER_TYPE} \
-a ${INSTALLER_IP}

source ${QTIP_DIR}/openrc

load_image