X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=deploy_vm1.sh;h=f307e984596a808c9e57aebba2376506344d3f06;hb=refs%2Fchanges%2F53%2F67953%2F1;hp=e1f9dd73690a0c75ef291ecada8c4b9ccdea43a9;hpb=fb417886112d22b8261de37c5eb2a030d6b4c1db;p=aai%2Ftest-config.git diff --git a/deploy_vm1.sh b/deploy_vm1.sh index e1f9dd7..f307e98 100755 --- a/deploy_vm1.sh +++ b/deploy_vm1.sh @@ -150,46 +150,6 @@ function check_if_user_exists(){ } } -# Instead of duplicating the changes from aai-common -# Clone the repo and extract the oxm and dbedgerules -function retrieve_schema_edgerules(){ - - local current_branch=$(git rev-parse --abbrev-ref HEAD); - local current_dir=$(pwd); - - local microservice_name=aai-common; - temp_dir=/tmp/${microservice_name}-$(uuidgen); - ( - mkdir -p ${temp_dir} && cd ${temp_dir}; - rm -r ${current_dir}/aai-schema - - git init - git remote add origin https://gerrit.onap.org/r/aai/aai-common - git config core.sparsecheckout true - - # Specifies which folders to checkout from the repo - # Limited to only the aai-resources as we don't need other folders from - # microservice deployment for this repository - - echo "aai-schema/src/main/resources/**" >> .git/info/sparse-checkout - - git fetch --depth=1 origin ${current_branch} && { - git checkout ${current_branch} - } || { - echo "Unable to find the branch ${current_branch} in aai-common, so using default branch ${default_branch}"; - git fetch --depth=1 origin ${default_branch} - git checkout ${default_branch} - } - - mkdir -p ${current_dir}/aai-schema - cp -R ${temp_dir}/aai-schema/src/main/resources/onap/ ${current_dir}/aai-schema - - rm -rf ${temp_dir} - ); -} - -retrieve_schema_edgerules; - docker pull ${DOCKER_REGISTRY}/onap/aai-graphadmin:${GRAPHADMIN_DOCKER_IMAGE_VERSION}; docker tag $DOCKER_REGISTRY/onap/aai-graphadmin:${GRAPHADMIN_DOCKER_IMAGE_VERSION} $DOCKER_REGISTRY/onap/aai-graphadmin:latest;