blob: 8a41a78dedf83c96d7883a3ddb87fab87bb166ee [file] [log] [blame]
Gary Wucbddc2b2018-01-22 13:33:21 -08001#!/bin/bash -x
Gary Wua3fb86f2018-06-04 16:23:54 -07002#
3# Copyright 2018 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#
Gary Wucbddc2b2018-01-22 13:33:21 -080011
12if [ -z "$WORKSPACE" ]; then
13 export WORKSPACE=`git rev-parse --show-toplevel`
14fi
15
16if [ "$#" -ne 1 ]; then
17 echo "Usage: $0 <env-name>"
18 exit 1
19fi
20ENV_FILE=$1
21
Gary Wu0d28fe62018-05-24 20:54:28 -070022SSH_KEY=~/.ssh/onap_key
23
Gary Wu808b13d2018-02-13 18:28:37 -080024source $WORKSPACE/test/ete/scripts/install_openstack_cli.sh
25
Gary Wu11c98742018-05-02 16:19:04 -070026SO_ENCRYPTION_KEY=aa3871669d893c7fb8abbcda31b88b4f
27export OS_PASSWORD_ENCRYPTED=$(echo -n "$OS_PASSWORD" | openssl aes-128-ecb -e -K "$SO_ENCRYPTION_KEY" -nosalt | xxd -c 256 -p)
28
Gary Wucbddc2b2018-01-22 13:33:21 -080029for n in $(seq 1 5); do
30 $WORKSPACE/test/ete/scripts/teardown-onap.sh
31
32 cd $WORKSPACE/deployment/heat/onap-oom
Gary Wu374498a2018-02-06 17:31:04 -080033 envsubst < $ENV_FILE > $ENV_FILE~
Gary Wud2579972018-05-23 12:36:46 -070034
35 if ! openstack stack create -t ./onap-oom.yaml -e $ENV_FILE~ onap-oom; then
36 break
37 fi
38
39 while [ "CREATE_IN_PROGRESS" == "$(openstack stack show -c stack_status -f value onap-oom)" ]; do
40 sleep 20
41 done
42
43 STATUS=$(openstack stack show -c stack_status -f value onap-oom)
44 echo $STATUS
45 if [ "CREATE_COMPLETE" != "$STATUS" ]; then
46 break
47 fi
Gary Wucbddc2b2018-01-22 13:33:21 -080048
Gary Wuae7c7642018-04-19 17:22:34 -070049 for i in $(seq 1 30); do
50 sleep 30
Gary Wucbddc2b2018-01-22 13:33:21 -080051 RANCHER_IP=$(openstack stack output show onap-oom rancher_vm_ip -c output_value -f value)
Gary Wud2579972018-05-23 12:36:46 -070052 K8S_IP=$(openstack stack output show onap-oom k8s_1_vm_ip -c output_value -f value)
Gary Wu14a6b302018-05-01 15:59:28 -070053 timeout 1 ping -c 1 "$RANCHER_IP" && break
Gary Wucbddc2b2018-01-22 13:33:21 -080054 done
55
Gary Wu14a6b302018-05-01 15:59:28 -070056 timeout 1 ping -c 1 "$RANCHER_IP" && break
Gary Wucbddc2b2018-01-22 13:33:21 -080057
Gary Wu14a6b302018-05-01 15:59:28 -070058 echo Error: OpenStack infrastructure issue: unable to reach rancher "$RANCHER_IP"
Gary Wucbddc2b2018-01-22 13:33:21 -080059 sleep 10
60done
61
Gary Wu14a6b302018-05-01 15:59:28 -070062if ! timeout 1 ping -c 1 "$RANCHER_IP"; then
Gary Wucbddc2b2018-01-22 13:33:21 -080063 exit 2
64fi
65
Gary Wud3337f02018-05-24 10:51:23 -070066ssh-keygen -R $RANCHER_IP
67
Gary Wu0d28fe62018-05-24 20:54:28 -070068ssh -o StrictHostKeychecking=no -i $SSH_KEY ubuntu@$RANCHER_IP "sed -u '/Cloud-init.*finished/q' <(tail -n+0 -f /var/log/cloud-init-output.log)"
Gary Wud2579972018-05-23 12:36:46 -070069
Gary Wu5627a692018-05-08 19:13:59 -070070for n in $(seq 1 6); do
Gary Wuc4749702018-06-26 14:27:41 -070071 echo "Wait count $n of 6"
72 sleep 15m
Gary Wu0d28fe62018-05-24 20:54:28 -070073 timeout 15m ssh -i $SSH_KEY ubuntu@$RANCHER_IP 'sudo su -l root -c "/root/oom/kubernetes/robot/ete-k8s.sh onap health"'
Gary Wucbddc2b2018-01-22 13:33:21 -080074 RESULT=$?
75 if [ $RESULT -eq 0 ]; then
76 break
77 fi
Gary Wucbddc2b2018-01-22 13:33:21 -080078done
Gary Wu0d28fe62018-05-24 20:54:28 -070079ROBOT_POD=$(ssh -i $SSH_KEY ubuntu@$RANCHER_IP 'sudo su -c "kubectl --namespace onap get pods"' | grep robot | sed 's/ .*//')
Gary Wud2579972018-05-23 12:36:46 -070080if [ "$ROBOT_POD" == "" ]; then
81 exit 1
82fi
Gary Wu36e42dd2018-05-03 07:29:53 -070083
Gary Wu43159fb2018-05-25 08:08:36 -070084LOG_DIR=$(echo "kubectl exec -n onap $ROBOT_POD -- ls -1t /share/logs | grep health | head -1" | ssh -i $SSH_KEY ubuntu@$RANCHER_IP sudo su)
Gary Wud2579972018-05-23 12:36:46 -070085if [ "$LOG_DIR" == "" ]; then
86 exit 1
87fi
88
89echo "kubectl cp -n onap $ROBOT_POD:share/logs/$LOG_DIR /tmp/robot/logs/$LOG_DIR" | ssh -i $SSH_KEY ubuntu@$RANCHER_IP sudo su
90rsync -e "ssh -i $SSH_KEY" -avtz ubuntu@$RANCHER_IP:/tmp/robot/logs/$LOG_DIR/ $WORKSPACE/archives/
91
92echo "Browse Robot results at http://$K8S_IP:30209/logs/$LOG_DIR/"
93
Gary Wucbddc2b2018-01-22 13:33:21 -080094exit 0