blob: d2b09f2aa432c34e565c240b29ad4682065f3173 (
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
openstack_release="newton"
# _build_multicloud_images() - Function that builds docker images from source code
function _build_multicloud_images {
install_docker
pushd ${src_folders[multicloud]}/openstack/$openstack_release
install_python_requirements .
python setup.py develop
#bash build_image.sh
popd
}
# get_multicloud_images() -
function get_multicloud_images {
if [[ "$build_image" == "True" ]]; then
_build_multicloud_images
else
pull_onap_image multicloud/openstack-$openstack_release
fi
}
# install_multicloud() -
function install_multicloud {
#pushd ${src_folders[multicloud]}/openstack/$openstack_release
#/opt/docker/docker-compose up -d
#popd
if [[ "$build_image" == "True" ]]; then
multicloud-api --port 9003 --host 0.0.0.0 &
else
docker_id=`docker images | grep onap/multicloud/openstack-$openstack_release | grep latest | awk '{print $3; exit}'`
docker run -d -p 0.0.0.0:9003:9003 $docker_id
fi
}
# init_multicloud() - Function that initialize Multi Cloud services
function init_multicloud {
if [[ "$clone_repo" == "True" ]]; then
clone_repos "multicloud"
if [[ "$compile_repo" == "True" ]]; then
compile_repos "multicloud"
fi
fi
if [[ "$skip_get_images" == "False" ]]; then
get_multicloud_images
if [[ "$skip_install" == "False" ]]; then
install_multicloud
fi
fi
}
|