diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2020-04-17 10:27:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-04-17 10:27:23 +0000 |
commit | 2acaba3042518f21565a7d10303f48464e63fed7 (patch) | |
tree | 4e6ba9bae315124700e99ee9ce6751e6b1d85455 /plans | |
parent | 5f7785e5acd4468a04fb3f038b1e8f71f6ce2dfd (diff) | |
parent | f340ddbd8422bf51dd537b851ebda62d25b1826f (diff) |
Merge "End-to-end policy CSIT"
Diffstat (limited to 'plans')
-rwxr-xr-x | plans/policy/drools-applications/setup.sh | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/plans/policy/drools-applications/setup.sh b/plans/policy/drools-applications/setup.sh index 99b0015c..1a1dc331 100755 --- a/plans/policy/drools-applications/setup.sh +++ b/plans/policy/drools-applications/setup.sh @@ -34,6 +34,10 @@ pip install -U docker==2.7.0 sudo apt-get -y install libxml2-utils ${SCRIPTS}/policy/policy-models-simulators.sh +POLICY_API_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/api/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)" +export POLICY_API_VERSION="${POLICY_API_VERSION_EXTRACT:0:3}-SNAPSHOT-latest" +POLICY_PAP_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/pap/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)" +export POLICY_PAP_VERSION="${POLICY_PAP_VERSION_EXTRACT:0:3}-SNAPSHOT-latest" POLICY_XACML_PDP_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/xacml-pdp/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)" export POLICY_XACML_PDP_VERSION="${POLICY_XACML_PDP_VERSION_EXTRACT:0:3}-SNAPSHOT-latest" POLICY_DROOLS_APPS_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/drools-applications/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)" @@ -50,31 +54,37 @@ docker -v && docker-compose -v # Adding this waiting container due to race condition between drools and mariadb docker-compose -f ${SCR2}/docker-compose-drools-apps.yml run --rm start_dependencies +# Adding this waiting container due to race condition between pap and xacml +docker-compose -f ${SCR2}/docker-compose-drools-apps.yml run --rm start_pap + # now bring everything else up docker-compose -f ${SCR2}/docker-compose-drools-apps.yml run --rm start_all unset http_proxy https_proxy DROOLS_IP=`get-instance-ip.sh drools` +API_IP=`get-instance-ip.sh policy-api` +PAP_IP=`get-instance-ip.sh policy-pap` XACML_IP=`get-instance-ip.sh policy-xacml-pdp` SIM_IP=`get-instance-ip.sh policy.api.simpledemo.onap.org` export SIM_IP echo DROOLS IP IS ${DROOLS_IP} +echo API IP IS ${API_IP} +echo PAP IP IS ${PAP_IP} echo XACML IP IS ${XACML_IP} echo SIMULATORS IP IS ${SIM_IP} -# activate xacml -${SCR2}/manage.sh ${SCR2}/activate.xacml.json - # give enough time for the controllers to come up sleep 15 -# wait for xacml to activate -${SCRIPTS}/policy/wait_for_port.sh ${XACML_IP} 6969 +DATA=${WORKSPACE}/simulators/models/models-examples/src/main/resources/policies ROBOT_VARIABLES="" ROBOT_VARIABLES="${ROBOT_VARIABLES} -v SCR2:${SCR2}" +ROBOT_VARIABLES="${ROBOT_VARIABLES} -v DATA:${DATA}" ROBOT_VARIABLES="${ROBOT_VARIABLES} -v DROOLS_IP:${DROOLS_IP}" +ROBOT_VARIABLES="${ROBOT_VARIABLES} -v API_IP:${API_IP}" +ROBOT_VARIABLES="${ROBOT_VARIABLES} -v PAP_IP:${PAP_IP}" ROBOT_VARIABLES="${ROBOT_VARIABLES} -v XACML_IP:${XACML_IP}" ROBOT_VARIABLES="${ROBOT_VARIABLES} -v SIM_IP:${SIM_IP}" |