Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright 2016-2017 Huawei Technologies Co., Ltd. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | # Modifications copyright (c) 2017 AT&T Intellectual Property |
| 18 | # |
| 19 | # Place the scripts in run order: |
| 20 | SCRIPTS="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
Gary Wu | 13111e9 | 2018-09-27 11:31:33 -0700 | [diff] [blame] | 21 | source ${WORKSPACE}/scripts/appc/script1.sh |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 22 | |
| 23 | export APPC_DOCKER_IMAGE_VERSION=1.4.0-SNAPSHOT-latest |
Aaron Hay | 73792ad | 2018-10-05 20:25:34 +0000 | [diff] [blame] | 24 | export DGBUILDER_DOCKER_IMAGE_VERSION=0.3.0 |
| 25 | export ANSIBLE_DOCKER_IMAGE_VERSION=0.3.0 |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 26 | export BRANCH=master |
| 27 | export SOLUTION_NAME=onap |
| 28 | |
| 29 | export NEXUS_USERNAME=docker |
| 30 | export NEXUS_PASSWD=docker |
| 31 | export NEXUS_DOCKER_REPO=nexus3.onap.org:10001 |
| 32 | export DMAAP_TOPIC=AUTO |
| 33 | |
| 34 | export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1) |
| 35 | |
| 36 | if [ "$MTU" == "" ]; then |
| 37 | export MTU="1450" |
| 38 | fi |
| 39 | |
| 40 | |
| 41 | # Clone APPC repo to get docker-compose for APPC |
| 42 | mkdir -p $WORKSPACE/archives/appc |
| 43 | cd $WORKSPACE/archives |
| 44 | git clone -b $BRANCH --single-branch http://gerrit.onap.org/r/appc/deployment.git appc |
| 45 | cd $WORKSPACE/archives/appc |
| 46 | git pull |
| 47 | cd $WORKSPACE/archives/appc/docker-compose |
| 48 | sed -i "s/DMAAP_TOPIC_ENV=.*/DMAAP_TOPIC_ENV="$DMAAP_TOPIC"/g" docker-compose.yml |
| 49 | docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO |
Aaron Hay | 73792ad | 2018-10-05 20:25:34 +0000 | [diff] [blame] | 50 | |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 51 | docker pull $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/appc-image:$APPC_DOCKER_IMAGE_VERSION |
| 52 | docker tag $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/appc-image:$APPC_DOCKER_IMAGE_VERSION ${SOLUTION_NAME}/appc-image:latest |
Aaron Hay | 73792ad | 2018-10-05 20:25:34 +0000 | [diff] [blame] | 53 | |
| 54 | docker pull $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/ccsdk-dgbuilder-image:$DGBUILDER_DOCKER_IMAGE_VERSION |
| 55 | docker tag $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/ccsdk-dgbuilder-image:$DGBUILDER_DOCKER_IMAGE_VERSION ${SOLUTION_NAME}/ccsdk-dgbuilder-image:latest |
| 56 | |
| 57 | docker pull $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/ccsdk-ansible-server-image:$ANSIBLE_DOCKER_IMAGE_VERSION |
| 58 | docker tag $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/ccsdk-ansible-server-image:$ANSIBLE_DOCKER_IMAGE_VERSION ${SOLUTION_NAME}/ccsdk-ansible-server-image:latest |
| 59 | |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 60 | docker pull $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/appc-cdt-image:$APPC_DOCKER_IMAGE_VERSION |
| 61 | docker tag $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/appc-cdt-image:$APPC_DOCKER_IMAGE_VERSION ${SOLUTION_NAME}/appc-cdt-image:latest |
| 62 | |
| 63 | # start APPC containers with docker compose and configuration from docker-compose.yml |
| 64 | docker-compose up -d |
| 65 | # WAIT 5 minutes maximum and test every 5 seconds if APPC is up using HealthCheck API |
| 66 | TIME_OUT=2000 |
| 67 | INTERVAL=30 |
| 68 | TIME=0 |
| 69 | while [ "$TIME" -lt "$TIME_OUT" ]; do |
| 70 | |
| 71 | startODL_status=$(docker exec appc_controller_container ps -e | grep startODL | wc -l) |
| 72 | waiting_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client bundle:list | grep Waiting | wc -l) |
| 73 | run_level=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client system:start-level) |
| 74 | |
| 75 | if [ "$run_level" == "Level 100" ] && [ "$startODL_status" -lt "1" ] && [ "$waiting_bundles" -lt "1" ] ; then |
| 76 | echo APPC started in $TIME seconds |
| 77 | break; |
| 78 | fi |
| 79 | |
| 80 | echo Sleep: $INTERVAL seconds before testing if APPC is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds |
| 81 | sleep $INTERVAL |
| 82 | TIME=$(($TIME+$INTERVAL)) |
| 83 | done |
| 84 | |
| 85 | if [ "$TIME" -ge "$TIME_OUT" ]; then |
| 86 | echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for testing activities... |
| 87 | fi |
| 88 | |
| 89 | sleep 300 |
| 90 | |
| 91 | # Pass any variables required by Robot test suites in ROBOT_VARIABLES |
| 92 | ROBOT_VARIABLES="-v SCRIPTS:${SCRIPTS}" |