aboutsummaryrefslogtreecommitdiffstats
path: root/ci/deploy_ci.sh
blob: bd5adcc73283b16f41408ffbae1bb99d3dbc5367 (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
#!/bin/bash
##############################################################################
# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

# ROOT_BUILD_CAUSE DEPLOY_SCENARIO COMPASS_OS_VERSION got from CI

CI_DIR=$(cd $(dirname ${BASH_SOURCE:-$0});pwd)

# FIXME: Some scenarios need to update.
case $DEPLOY_SCENARIO in
    os-onos-sfc-ha)
        echo "os-onos-sfc-ha scenario supports mitaka only"
        exit 1
        ;;
    k8-nosdn-nofeature-ha)
        export COMPASS_OS_VERSION=centos7
        export KUBERNETES_VERSION="v1.7.3"
        ;;
esac

if [[ "$NODE_NAME" =~ "intel-pod17" ]]; then
    export USER_NAMESERVER=8.8.8.8
fi

if [[ $ROOT_BUILD_CAUSE == MANUALTRIGGER ]]; then
# For manual ci trigger build, directly use the value pass from CI
    export COMPASS_OS_VERSION=${COMPASS_OS_VERSION:-xenial}
    export COMPASS_OPENSTACK_VERSION=${COMPASS_OPENSTACK_VERSION:-pike}

else
# For daily build or verify build, adjust COMPASS_OS_VERSION and OPENSTACK_VERSION
# value according to COMPASS_OS_VERSION pass from CI

    if [[ $COMPASS_OS_VERSION == centos7 ]]; then
        export COMPASS_OS_VERSION=${COMPASS_OS_VERSION:-centos7}
        export COMPASS_OPENSTACK_VERSION=${COMPASS_OPENSTACK_VERSION:-pike}
    else
        export COMPASS_OS_VERSION=${COMPASS_OS_VERSION:-xenial}
        export COMPASS_OPENSTACK_VERSION=${COMPASS_OPENSTACK_VERSION:-pike}
    fi
fi

# these variables used by compass
export OS_VERSION=$COMPASS_OS_VERSION
export OPENSTACK_VERSION=$COMPASS_OPENSTACK_VERSION

set +x
echo "#############################################"
echo 'DEPLOY_SCENARIO='$DEPLOY_SCENARIO
echo 'OS_VERSION='$OS_VERSION
echo 'OPENSTACK_VERSION='$OPENSTACK_VERSION
echo "#############################################"
set -x

# clean up
export TAR_URL=${TAR_URL:-$ISO_URL}
sudo docker rm -f $(docker ps -aq)
$CI_DIR/../deploy.sh