blob: 8ab79a2c83fcf4ad5831d77d6e5d0a00d20790a5 [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 Wu11c98742018-05-02 16:19:04 -070015SO_ENCRYPTION_KEY=aa3871669d893c7fb8abbcda31b88b4f
16export OS_PASSWORD_ENCRYPTED=$(echo -n "$OS_PASSWORD" | openssl aes-128-ecb -e -K "$SO_ENCRYPTION_KEY" -nosalt | xxd -c 256 -p)
17
Gary Wucbddc2b2018-01-22 13:33:21 -080018for n in $(seq 1 5); do
19 $WORKSPACE/test/ete/scripts/teardown-onap.sh
20
21 cd $WORKSPACE/deployment/heat/onap-oom
Gary Wu374498a2018-02-06 17:31:04 -080022 envsubst < $ENV_FILE > $ENV_FILE~
23 openstack stack create -t ./onap-oom.yaml -e $ENV_FILE~ onap-oom
Gary Wucbddc2b2018-01-22 13:33:21 -080024
Gary Wuae7c7642018-04-19 17:22:34 -070025 for i in $(seq 1 30); do
26 sleep 30
Gary Wucbddc2b2018-01-22 13:33:21 -080027 RANCHER_IP=$(openstack stack output show onap-oom rancher_vm_ip -c output_value -f value)
Gary Wu14a6b302018-05-01 15:59:28 -070028 timeout 1 ping -c 1 "$RANCHER_IP" && break
Gary Wucbddc2b2018-01-22 13:33:21 -080029 done
30
Gary Wu14a6b302018-05-01 15:59:28 -070031 timeout 1 ping -c 1 "$RANCHER_IP" && break
Gary Wucbddc2b2018-01-22 13:33:21 -080032
Gary Wu14a6b302018-05-01 15:59:28 -070033 echo Error: OpenStack infrastructure issue: unable to reach rancher "$RANCHER_IP"
Gary Wucbddc2b2018-01-22 13:33:21 -080034 sleep 10
35done
36
Gary Wu14a6b302018-05-01 15:59:28 -070037if ! timeout 1 ping -c 1 "$RANCHER_IP"; then
Gary Wucbddc2b2018-01-22 13:33:21 -080038 exit 2
39fi
40
Gary Wu14a6b302018-05-01 15:59:28 -070041ssh-keygen -R $RANCHER_IP
Gary Wucbddc2b2018-01-22 13:33:21 -080042for n in $(seq 1 10); do
Gary Wu14a6b302018-05-01 15:59:28 -070043 timeout 15m ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_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 -080044 RESULT=$?
45 if [ $RESULT -eq 0 ]; then
46 break
47 fi
48 sleep 15m
49done
Gary Wu14a6b302018-05-01 15:59:28 -070050ROBOT_POD=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$RANCHER_IP 'sudo su -c "kubectl --namespace onap get pods"' | grep robot | sed 's/ .*//')
51LOG_DIR=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$RANCHER_IP "sudo su -c \"kubectl exec $ROBOT_POD --namespace onap -- ls -1t /share/logs | head -1\"")
Gary Wu36e42dd2018-05-03 07:29:53 -070052
53K8S_IP=$(openstack stack output show onap-oom k8s_1_vm_ip -c output_value -f value)
54wget --user=robot --password=robot -r -np -nH --cut-dirs=2 -R "index.html*" -P $WORKSPACE/archives/ http://$K8S_IP:30209/logs/$LOG_DIR/
Gary Wucbddc2b2018-01-22 13:33:21 -080055exit 0