blob: 006a114d37476ee74fd3015dc77ac7209d82bfbe [file] [log] [blame]
Kiran Kamineniac3438c2019-03-13 12:24:23 -07001#!/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
14pushd ${SCRIPTS}
15
16# start mongodb
17./run-instance.sh docker.io/mongo:4.0 multicloud-k8s-mongodb
18MONGO_IP=$(./get-instance-ip.sh multicloud-k8s-mongodb)
19
Kiran Kamineniad13ac52019-04-23 12:37:20 -070020# setup multicloud-k8s configuration
21CONFIG_FILE=$(pwd)/k8sconfig.json
Kiran Kamineni22c9a562019-05-06 22:02:21 -070022SERVICE_PORT=9015
Kiran Kamineniad13ac52019-04-23 12:37:20 -070023cat << EOF > $CONFIG_FILE
24{
25 "database-address": "$MONGO_IP",
26 "database-type": "mongo",
27 "plugin-dir": "plugins",
Kiran Kamineni22c9a562019-05-06 22:02:21 -070028 "service-port": "$SERVICE_PORT",
Kiran Kamineniad13ac52019-04-23 12:37:20 -070029 "kube-config-dir": "kubeconfigs"
30}
31EOF
32
33cat $CONFIG_FILE
34
Kiran Kamineniac3438c2019-03-13 12:24:23 -070035# start multicloud-k8s
Kiran Kamineniad13ac52019-04-23 12:37:20 -070036docker run --name multicloud-k8s -v $CONFIG_FILE:/opt/multicloud/k8splugin/k8sconfig.json \
37 -d nexus3.onap.org:10001/onap/multicloud/k8s:latest
Kiran Kamineniac3438c2019-03-13 12:24:23 -070038SERVICE_IP=$(./get-instance-ip.sh multicloud-k8s)
Kiran Kamineniac3438c2019-03-13 12:24:23 -070039popd
40
41if [[ $no_proxy && $no_proxy != *$SERVICE_IP* ]]; then
42 export no_proxy+=$no_proxy,$SERVICE_IP
43fi
44
45for i in {1..50}; do
46 curl -sS ${SERVICE_IP}:${SERVICE_PORT} && break
47 echo sleep $i
48 sleep $i
49done
50
51# Pass any variables required by Robot test suites in ROBOT_VARIABLES
52ROBOT_VARIABLES+="-v SERVICE_IP:${SERVICE_IP} "
53ROBOT_VARIABLES+="-v SERVICE_PORT:${SERVICE_PORT} "