Merge "Add HPA and VimFit test cases"
[integration.git] / deployment / heat / onap-oom / scripts / deploy.sh
1 #!/bin/bash -x
2
3 if [ -z "$WORKSPACE" ]; then
4     export WORKSPACE=`git rev-parse --show-toplevel`
5 fi
6
7 if [ "$#" -ne 1 ]; then
8     echo "Usage: $0 <env-name>"
9     exit 1
10 fi
11 ENV_FILE=$1
12
13 source $WORKSPACE/test/ete/scripts/install_openstack_cli.sh
14
15 for n in $(seq 1 5); do
16     $WORKSPACE/test/ete/scripts/teardown-onap.sh
17
18     cd $WORKSPACE/deployment/heat/onap-oom
19     envsubst < $ENV_FILE > $ENV_FILE~
20     openstack stack create -t ./onap-oom.yaml -e $ENV_FILE~ onap-oom
21
22     for i in $(seq 1 30); do
23         sleep 30
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
33 done
34
35 if ! timeout 1 ping -c 1 "$K8S_IP" || ! timeout 1 ping -c 1 "$RANCHER_IP"; then
36     exit 2
37 fi
38
39 ssh-keygen -R $K8S_IP
40 for n in $(seq 1 10); do
41     timeout 15m 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"'
42     RESULT=$?
43     if [ $RESULT -eq 0 ]; then
44         break
45     fi
46     sleep 15m
47 done
48 ROBOT_POD=$(ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP 'sudo su -c "kubectl --namespace onap get pods"' | grep robot | sed 's/ .*//')
49 LOG_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\"")
50 wget --user=robot --password=robot -r -np -nH --cut-dirs=2 -R "index.html*" -P $WORKSPACE/archives/ http://$K8S_IP:30209/logs/$LOG_DIR/
51 exit 0