diff options
author | Victor Morales <victor.morales@intel.com> | 2018-03-13 12:36:55 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-03-15 16:58:22 +0000 |
commit | df17a7ff9ba569227e8a2b5b1863800bbb8e1806 (patch) | |
tree | 749011aaf1b514e17c31edd9c12252a95f0aec18 /bootstrap/vagrant-onap/lib/vnfsdk | |
parent | 1393fc2533cae1271126498f1661dec893922dae (diff) |
Deprecate vagrant-onap tool
The vagrant-onap tool needs to be moved to its own repo to have better
control of versions and autonomy. This change removes the project from
integration repository.
Change-Id: I90bd4505a9fc7376c31a780aa1b833ee2663af3e
Signed-off-by: Victor Morales <victor.morales@intel.com>
Depends-On: I79df8c35fccaa266a789217d441a6cf1183bd42a
Issue-ID: INT-441
Diffstat (limited to 'bootstrap/vagrant-onap/lib/vnfsdk')
-rwxr-xr-x | bootstrap/vagrant-onap/lib/vnfsdk | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/bootstrap/vagrant-onap/lib/vnfsdk b/bootstrap/vagrant-onap/lib/vnfsdk deleted file mode 100755 index ea7fa3332..000000000 --- a/bootstrap/vagrant-onap/lib/vnfsdk +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash - -source /var/onap/functions - -# _build_vnfsdk_images() - Builds VNFSDK images from source code -function _build_vnfsdk_images { - install_package unzip - pushd ${src_folders[vnfsdk]}/refrepo/vnfmarket-be/deployment/docker/docker-refrepo - build_docker_image . - popd -} - -# get_vnfsdk_images - Function that clones vnfsdk Docker images -function get_vnfsdk_images { - if [[ "$build_image" == "True" ]]; then - # TODO(sshank): Has errors building. - _build_vnfsdk_images - else - pull_docker_image refrepo:1.0-STAGING-latest - pull_docker_image refrepo:latest - fi -} - -# install_vnfsdk - Function that installs vnfsdk Docker images -function install_vnfsdk { - install_docker_compose - pushd ${src_folders[vnfsdk]}/refrepo/vnfmarket-be/deployment/install - /opt/docker/docker-compose up -d - popd -} - -# init_vnfsdk() - Init VNFSDK services -function init_vnfsdk { - if [[ "$clone_repo" == "True" ]]; then - clone_repos "vnfsdk" - if [[ "$compile_repo" == "True" ]]; then - compile_repos "vnfsdk" - fi - fi - - if [[ "$skip_get_images" == "False" ]]; then - get_vnfsdk_images - if [[ "$skip_install" == "False" ]]; then - install_vnfsdk - fi - fi -} |