aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/lib/appc
blob: 8ad73561f6fc11c5eca2a6c487f2e3598ba4a2b7 (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
#!/bin/bash

set -o xtrace

source /var/onap/sdnc
source /var/onap/asserts

# clone_all_appc_repos() - Function that clones APPC source repo.
function clone_all_appc_repos {
    local src_folder=/opt/appc

    clone_repo appc $src_folder
    clone_repo appc/deployment $src_folder/deployment
}

# compile_all_appc_repos() - Function that compiles APPC source repo.
function compile_all_appc_repos {
    local src_folder=/opt/appc

    compile_src $src_folder
    compile_src $src_folder/deployment
}

# install_appc() - Function that clones and installs the APPC services from source code
function install_appc {
    install_package unzip
    local src_folder=/opt/appc

    clone_all_appc_repos
    if [[ "$compile_repo" == "True" ]]; then
        compile_all_appc_repos
    fi

    if [[ "$build_image" == "True" ]]; then
        clone_repo sdnc/oam /opt/sdnc/oam
        build_sdnc_images /opt/sdnc/oam
        build_docker_image $src_folder/deployment/installation/appc docker
        asserts_image openecomp/appc-image
    else
        pull_openecomp_image appc-image openecomp/appc-image:latest
        pull_openecomp_image dgbuilder-sdnc-image openecomp/dgbuilder-sdnc-image:latest
    fi
    pushd $src_folder/deployment
    install_docker_compose
    /opt/docker/docker-compose up -d
    popd
}

# init_appc() - Function that initialize APPC services
function init_appc {
    install_appc
}