blob: 60ceab66351ab667eddef9255b6a13b78999e20e [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
Gary Wu808b13d2018-02-13 18:28:37 -080013source $WORKSPACE/test/ete/scripts/install_openstack_cli.sh
14
Gary Wucbddc2b2018-01-22 13:33:21 -080015for n in $(seq 1 5); do
16 $WORKSPACE/test/ete/scripts/teardown-onap.sh
17
18 cd $WORKSPACE/deployment/heat/onap-oom
Gary Wu374498a2018-02-06 17:31:04 -080019 envsubst < $ENV_FILE > $ENV_FILE~
20 openstack stack create -t ./onap-oom.yaml -e $ENV_FILE~ onap-oom
Gary Wucbddc2b2018-01-22 13:33:21 -080021
22 for i in $(seq 1 10); do
23 sleep 10
24 K8S_IP=$(openstack stack output show onap-oom k8s_vm_ip -c output_value -f value)
25 RANCHER_IP=$(openstack stack output show onap-oom rancher_vm_ip -c output_value -f value)
26 timeout 1 ping -c 1 "$K8S_IP" && timeout 1 ping -c 1 "$RANCHER_IP" && break
27 done
28
29 timeout 1 ping -c 1 "$K8S_IP" && timeout 1 ping -c 1 "$RANCHER_IP" && break
30
31 echo Error: OpenStack infrastructure issue: unable to reach both rancher "$RANCHER_IP" and k8s "$K8S_IP"
32 sleep 10
33done
34
Gary Wu3947e462018-01-23 06:41:18 -080035if ! timeout 1 ping -c 1 "$K8S_IP" || ! timeout 1 ping -c 1 "$RANCHER_IP"; then
Gary Wucbddc2b2018-01-22 13:33:21 -080036 exit 2
37fi
38
39ssh-keygen -R $K8S_IP
40for n in $(seq 1 10); do
Gary Wu57abb1a2018-03-09 13:38:28 -080041 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 onap health"'
Gary Wucbddc2b2018-01-22 13:33:21 -080042 RESULT=$?
43 if [ $RESULT -eq 0 ]; then
44 break
45 fi
46 sleep 15m
47done
48LOG_DIR=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP "ls -1t /dockerdata-nfs/onap/robot/eteshare/logs | head -1")
49rsync -e "ssh -i ~/.ssh/onap_key" -avPz ubuntu@$K8S_IP:/dockerdata-nfs/onap/robot/eteshare/logs/${LOG_DIR}/ $WORKSPACE/archives/
50exit 0