aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/lib/appc
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-03-02 21:59:10 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-02 21:59:10 +0000
commit964af191e5d959ad855636cbab2dfa1350cbfa9e (patch)
treeffa54596302f86f1c2c233e280dc13b3c6b2bbe3 /bootstrap/vagrant-onap/lib/appc
parent10d984c3606b5c6a026dea4b9df0954d74d0a8d1 (diff)
parentf8730f5f8d0e044fac2f76f465f285736446c5ca (diff)
Merge "Remove customize src_folder variables"
Diffstat (limited to 'bootstrap/vagrant-onap/lib/appc')
-rwxr-xr-xbootstrap/vagrant-onap/lib/appc12
1 files changed, 5 insertions, 7 deletions
diff --git a/bootstrap/vagrant-onap/lib/appc b/bootstrap/vagrant-onap/lib/appc
index ad01ca53e..95654fc10 100755
--- a/bootstrap/vagrant-onap/lib/appc
+++ b/bootstrap/vagrant-onap/lib/appc
@@ -6,7 +6,7 @@ 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 $appc_src_folder/deployment/installation/appc docker
+ build_docker_image ${src_folders[appc]}/deployment/installation/appc docker
}
# get_appc_images() - Function that gets or build APPC docker images
@@ -14,17 +14,15 @@ function get_appc_images {
if [[ "$build_image" == "True" ]]; then
_build_appc_images
else
- pull_openecomp_image appc-image openecomp/appc-image:latest
- pull_openecomp_image dgbuilder-sdnc-image openecomp/dgbuilder-sdnc-image:latest
+ for image in appc-image dgbuilder-sdnc-image; do
+ pull_openecomp_image $image openecomp/$image:latest
+ done
fi
}
# install_appc() - Function that clones and installs the APPC services from source code
function install_appc {
- pushd $appc_src_folder/deployment/docker-compose
- install_docker_compose
- /opt/docker/docker-compose up -d
- popd
+ run_docker_compose ${src_folders[appc]}/deployment/docker-compose
}
# init_appc() - Function that initialize APPC services