From df17a7ff9ba569227e8a2b5b1863800bbb8e1806 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Tue, 13 Mar 2018 12:36:55 -0700 Subject: 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 Depends-On: I79df8c35fccaa266a789217d441a6cf1183bd42a Issue-ID: INT-441 --- bootstrap/vagrant-onap/lib/vnfsdk | 47 --------------------------------------- 1 file changed, 47 deletions(-) delete mode 100755 bootstrap/vagrant-onap/lib/vnfsdk (limited to 'bootstrap/vagrant-onap/lib/vnfsdk') 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 -} -- cgit 1.2.3-korg