blob: c4d9bf887653a5706da8b7cb720e380da2850d64 [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
Gary Wuae7c7642018-04-19 17:22:34 -070022 for i in $(seq 1 30); do
23 sleep 30
Gary Wucbddc2b2018-01-22 13:33:21 -080024 RANCHER_IP=$(openstack stack output show onap-oom rancher_vm_ip -c output_value -f value)
Gary Wu14a6b302018-05-01 15:59:28 -070025 timeout 1 ping -c 1 "$RANCHER_IP" && break
Gary Wucbddc2b2018-01-22 13:33:21 -080026 done
27
Gary Wu14a6b302018-05-01 15:59:28 -070028 timeout 1 ping -c 1 "$RANCHER_IP" && break
Gary Wucbddc2b2018-01-22 13:33:21 -080029
Gary Wu14a6b302018-05-01 15:59:28 -070030 echo Error: OpenStack infrastructure issue: unable to reach rancher "$RANCHER_IP"
Gary Wucbddc2b2018-01-22 13:33:21 -080031 sleep 10
32done
33
Gary Wu14a6b302018-05-01 15:59:28 -070034if ! timeout 1 ping -c 1 "$RANCHER_IP"; then
Gary Wucbddc2b2018-01-22 13:33:21 -080035 exit 2
36fi
37
Gary Wu14a6b302018-05-01 15:59:28 -070038ssh-keygen -R $RANCHER_IP
Gary Wucbddc2b2018-01-22 13:33:21 -080039for n in $(seq 1 10); do
Gary Wu14a6b302018-05-01 15:59:28 -070040 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 -080041 RESULT=$?
42 if [ $RESULT -eq 0 ]; then
43 break
44 fi
45 sleep 15m
46done
Gary Wu14a6b302018-05-01 15:59:28 -070047ROBOT_POD=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$RANCHER_IP 'sudo su -c "kubectl --namespace onap get pods"' | grep robot | sed 's/ .*//')
48LOG_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\"")
49wget --user=robot --password=robot -r -np -nH --cut-dirs=2 -R "index.html*" -P $WORKSPACE/archives/ http://$RANCHER_IP:30209/logs/$LOG_DIR/
Gary Wucbddc2b2018-01-22 13:33:21 -080050exit 0