blob: fb5bd03e995837706d65d28e8b342316f655bc02 [file] [log] [blame]
Gary Wucbddc2b2018-01-22 13:33:21 -08001#!/bin/bash -x
Gary Wucbddc2b2018-01-22 13:33:21 -08002
3if [ -z "$WORKSPACE" ]; then
4 export WORKSPACE=`git rev-parse --show-toplevel`
5fi
6
7if [ "$#" -ne 1 ]; then
8 echo "Usage: $0 <env-name>"
9 exit 1
10fi
11ENV_FILE=$1
12
13for n in $(seq 1 5); do
14 $WORKSPACE/test/ete/scripts/teardown-onap.sh
15
16 cd $WORKSPACE/deployment/heat/onap-oom
Gary Wu374498a2018-02-06 17:31:04 -080017 envsubst < $ENV_FILE > $ENV_FILE~
18 openstack stack create -t ./onap-oom.yaml -e $ENV_FILE~ onap-oom
Gary Wucbddc2b2018-01-22 13:33:21 -080019
20 for i in $(seq 1 10); do
21 sleep 10
22 K8S_IP=$(openstack stack output show onap-oom k8s_vm_ip -c output_value -f value)
23 RANCHER_IP=$(openstack stack output show onap-oom rancher_vm_ip -c output_value -f value)
24 timeout 1 ping -c 1 "$K8S_IP" && timeout 1 ping -c 1 "$RANCHER_IP" && break
25 done
26
27 timeout 1 ping -c 1 "$K8S_IP" && timeout 1 ping -c 1 "$RANCHER_IP" && break
28
29 echo Error: OpenStack infrastructure issue: unable to reach both rancher "$RANCHER_IP" and k8s "$K8S_IP"
30 sleep 10
31done
32
Gary Wu3947e462018-01-23 06:41:18 -080033if ! timeout 1 ping -c 1 "$K8S_IP" || ! timeout 1 ping -c 1 "$RANCHER_IP"; then
Gary Wucbddc2b2018-01-22 13:33:21 -080034 exit 2
35fi
36
37ssh-keygen -R $K8S_IP
38for n in $(seq 1 10); do
39 timeout 2m ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP 'sudo su -l root -c "/root/oom/kubernetes/robot/ete-k8s.sh health"'
40 RESULT=$?
41 if [ $RESULT -eq 0 ]; then
42 break
43 fi
44 sleep 15m
45done
46LOG_DIR=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP "ls -1t /dockerdata-nfs/onap/robot/eteshare/logs | head -1")
47rsync -e "ssh -i ~/.ssh/onap_key" -avPz ubuntu@$K8S_IP:/dockerdata-nfs/onap/robot/eteshare/logs/${LOG_DIR}/ $WORKSPACE/archives/
48exit 0