aboutsummaryrefslogtreecommitdiffstats
path: root/opera_launch.sh
blob: 18b0ca85c415999503d90c892ba16beccc1254d8 (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
##############################################################################
# Copyright (c) 2016-2017 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
##############################################################################
set -ex
start=$(date +%s)
export OPERA_DIR=`cd ${BASH_SOURCE[0]%/*}/;pwd`
CONF_DIR=${OPERA_DIR}/conf
OPENO_DIR=${OPERA_DIR}/open-o
JUJU_DIR=${OPERA_DIR}/juju
WORK_DIR=${OPERA_DIR}/work
UTIL_DIR=${OPERA_DIR}/util

export DEPLOY_FIRST_TIME=${DEPLOY_FIRST_TIME:-"true"}
export DEPLOY_OPENO=${DEPLOY_OPENO:-"true"}
export DEPLOY_JUJU=${DEPLOY_JUJU:-"true"}

source ${OPERA_DIR}/conf/admin-openrc.sh

source ${OPERA_DIR}/prepare.sh
source ${OPERA_DIR}/conf/juju.conf
source ${OPENO_DIR}/openo_docker.sh
source ${UTIL_DIR}/log.sh
source ${JUJU_DIR}/command.sh
source ${JUJU_DIR}/juju_setup.sh
source ${JUJU_DIR}/juju_launch.sh
source ${JUJU_DIR}/juju_connect.sh
source ${JUJU_DIR}/vims_deploy.sh

mkdir -p $WORK_DIR

if [[ "$DEPLOY_FIRST_TIME" == "true" ]]; then
    prepare_env
fi

source ${WORK_DIR}/scripts/open-o.conf
source ${WORK_DIR}/scripts/vnf.conf

if [[ "$DEPLOY_OPENO" == "true" ]]; then
    if ! launch_openo;then
        log_error "launch_openo failed"
        exit 1
    fi
fi

if [[ "$DEPLOY_JUJU" == "true" ]]; then
    juju_env_prepare
    clear_juju_vm

    if ! juju_prepare; then
        log_error "juju_prepare failed"
        exit 1
    fi

    if ! launch_juju; then
        log_error "launch_juju failed"
        exit 1
    fi
    connect_juju_and_openo
fi

if [[ -n $VNF_TYPE ]]; then
    deploy_vnf
fi

figlet -ctf slant Open-O Installed
end=$(date +%s)
runtime=$[(end-start) / 60]
echo "Duration: $runtime mins"
set +ex