aboutsummaryrefslogtreecommitdiffstats
path: root/lib/policy
blob: 9d665a82d98abc082f25737455754dac58bf6996 (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
#!/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/functions

# _build_policy_images() - Function that build Policy docker images from source code
function _build_policy_images {
    compile_src ${src_folders[policy]}/docker
    pushd ${src_folders[policy]}/docker
    install_maven
    mvn prepare-package
    cp -r target/policy-pe/* policy-pe/
    cp -r target/policy-drools/* policy-drools
    install_docker
    bash docker_verify.sh
    popd
}

# get_policy_images() - Function that retrieves Policy docker images
function get_policy_images {
    if [[ "$build_image" == "True" ]]; then
        _build_policy_images
    else
        for image in db pe drools nexus; do
            pull_onap_image policy/policy-$image latest onap/policy/policy-$image:latest
        done
    fi
}

# install_policy() - Function that clones and installs the Policy services from source code
function install_policy {
    pushd ${src_folders[policy]}/docker
    chmod +x config/drools/drools-tweaks.sh
    echo $IP_ADDRESS > config/pe/ip_addr.txt
    run_docker_compose .
    popd
}

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

    if [[ "$skip_get_images" == "False" ]]; then
        get_policy_images
        if [[ "$skip_install" == "False" ]]; then
            install_policy
        fi
    fi
}