blob: 1e633bef1e20a49b60ef5806084290f6ef70876c (
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
|
#!/bin/bash
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 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
}
|