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/policy | 53 --------------------------------------- 1 file changed, 53 deletions(-) delete mode 100755 bootstrap/vagrant-onap/lib/policy (limited to 'bootstrap/vagrant-onap/lib/policy') diff --git a/bootstrap/vagrant-onap/lib/policy b/bootstrap/vagrant-onap/lib/policy deleted file mode 100755 index 1e633bef1..000000000 --- a/bootstrap/vagrant-onap/lib/policy +++ /dev/null @@ -1,53 +0,0 @@ -#!/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 -} -- cgit 1.2.3-korg