Kiran Kamineni | ac3438c | 2019-03-13 12:24:23 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright (c) 2018 Intel Corporation, Inc |
| 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 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | |
| 14 | pushd ${SCRIPTS} |
| 15 | |
| 16 | # start mongodb |
| 17 | ./run-instance.sh docker.io/mongo:4.0 multicloud-k8s-mongodb |
| 18 | MONGO_IP=$(./get-instance-ip.sh multicloud-k8s-mongodb) |
| 19 | |
Kiran Kamineni | ad13ac5 | 2019-04-23 12:37:20 -0700 | [diff] [blame] | 20 | # setup multicloud-k8s configuration |
| 21 | CONFIG_FILE=$(pwd)/k8sconfig.json |
| 22 | cat << EOF > $CONFIG_FILE |
| 23 | { |
| 24 | "database-address": "$MONGO_IP", |
| 25 | "database-type": "mongo", |
| 26 | "plugin-dir": "plugins", |
| 27 | "kube-config-dir": "kubeconfigs" |
| 28 | } |
| 29 | EOF |
| 30 | |
| 31 | cat $CONFIG_FILE |
| 32 | |
Kiran Kamineni | ac3438c | 2019-03-13 12:24:23 -0700 | [diff] [blame] | 33 | # start multicloud-k8s |
Kiran Kamineni | ad13ac5 | 2019-04-23 12:37:20 -0700 | [diff] [blame] | 34 | docker run --name multicloud-k8s -v $CONFIG_FILE:/opt/multicloud/k8splugin/k8sconfig.json \ |
| 35 | -d nexus3.onap.org:10001/onap/multicloud/k8s:latest |
Kiran Kamineni | ac3438c | 2019-03-13 12:24:23 -0700 | [diff] [blame] | 36 | SERVICE_IP=$(./get-instance-ip.sh multicloud-k8s) |
| 37 | SERVICE_PORT=8081 |
| 38 | popd |
| 39 | |
| 40 | if [[ $no_proxy && $no_proxy != *$SERVICE_IP* ]]; then |
| 41 | export no_proxy+=$no_proxy,$SERVICE_IP |
| 42 | fi |
| 43 | |
| 44 | for i in {1..50}; do |
| 45 | curl -sS ${SERVICE_IP}:${SERVICE_PORT} && break |
| 46 | echo sleep $i |
| 47 | sleep $i |
| 48 | done |
| 49 | |
| 50 | # Pass any variables required by Robot test suites in ROBOT_VARIABLES |
| 51 | ROBOT_VARIABLES+="-v SERVICE_IP:${SERVICE_IP} " |
| 52 | ROBOT_VARIABLES+="-v SERVICE_PORT:${SERVICE_PORT} " |