blob: c81e65c8b140817ee730f6aee5df928f18860465 [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
Gary Wuc815e1d2018-04-05 11:52:27 -070048ROBOT_POD=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP 'sudo su -c "kubectl --namespace onap get pods"' | grep robot | sed 's/ .*//')
49LOG_DIR=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP "sudo su -c \"kubectl exec $ROBOT_POD --namespace onap -- ls -1t /share/logs | head -1\"")
50wget --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 -080051exit 0