aboutsummaryrefslogtreecommitdiffstats
path: root/lib/appc
blob: 3eeb70509f4decd8688e45e98aa4057c69615af3 (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
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2017-2018
# 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
#############################################################################

source /var/onap/sdnc
source /var/onap/functions

# _build_appc_images() - Function that creates APPC images from source code.
function _build_appc_images {
    get_sdnc_images
    build_docker_image ${src_folders[appc]}/deployment/installation/appc docker
}

# get_appc_images() - Function that gets or build APPC docker images
function get_appc_images {
    if [[ "$build_image" == "True" ]]; then
        _build_appc_images
    else
        for image in appc-image dgbuilder-sdnc-image; do
            pull_openecomp_image $image ${docker_version:-latest} openecomp/$image:latest
        done
    fi
}

# install_appc() - Function that clones and installs the APPC services from source code
function install_appc {
    run_docker_compose ${src_folders[appc]}/deployment/docker-compose
}

# init_appc() - Function that initialize APPC services
function init_appc {
    if [[ "$clone_repo" == "True" ]]; then
        clone_repos "appc"
        if [[ "$compile_repo" == "True" ]]; then
            compile_repos "appc"
        fi
    fi

    if [[ "$skip_get_images" == "False" ]]; then
        get_appc_images
        if [[ "$skip_install" == "False" ]]; then
            install_appc
        fi
    fi
}