Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 1 | #!/bin/bash -x |
Gary Wu | a3fb86f | 2018-06-04 16:23:54 -0700 | [diff] [blame] | 2 | # |
| 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 Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 11 | |
| 12 | if [ -z "$WORKSPACE" ]; then |
| 13 | export WORKSPACE=`git rev-parse --show-toplevel` |
| 14 | fi |
| 15 | |
| 16 | if [ "$#" -ne 1 ]; then |
| 17 | echo "Usage: $0 <env-name>" |
| 18 | exit 1 |
| 19 | fi |
| 20 | ENV_FILE=$1 |
| 21 | |
Gary Wu | 0d28fe6 | 2018-05-24 20:54:28 -0700 | [diff] [blame] | 22 | SSH_KEY=~/.ssh/onap_key |
| 23 | |
Gary Wu | 808b13d | 2018-02-13 18:28:37 -0800 | [diff] [blame] | 24 | source $WORKSPACE/test/ete/scripts/install_openstack_cli.sh |
| 25 | |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 26 | SO_ENCRYPTION_KEY=aa3871669d893c7fb8abbcda31b88b4f |
| 27 | export OS_PASSWORD_ENCRYPTED=$(echo -n "$OS_PASSWORD" | openssl aes-128-ecb -e -K "$SO_ENCRYPTION_KEY" -nosalt | xxd -c 256 -p) |
| 28 | |
Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 29 | for n in $(seq 1 5); do |
| 30 | $WORKSPACE/test/ete/scripts/teardown-onap.sh |
| 31 | |
| 32 | cd $WORKSPACE/deployment/heat/onap-oom |
Gary Wu | 374498a | 2018-02-06 17:31:04 -0800 | [diff] [blame] | 33 | envsubst < $ENV_FILE > $ENV_FILE~ |
Gary Wu | d257997 | 2018-05-23 12:36:46 -0700 | [diff] [blame] | 34 | |
| 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 Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 48 | |
Gary Wu | ae7c764 | 2018-04-19 17:22:34 -0700 | [diff] [blame] | 49 | for i in $(seq 1 30); do |
| 50 | sleep 30 |
Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 51 | RANCHER_IP=$(openstack stack output show onap-oom rancher_vm_ip -c output_value -f value) |
Gary Wu | d257997 | 2018-05-23 12:36:46 -0700 | [diff] [blame] | 52 | K8S_IP=$(openstack stack output show onap-oom k8s_1_vm_ip -c output_value -f value) |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 53 | timeout 1 ping -c 1 "$RANCHER_IP" && break |
Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 54 | done |
| 55 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 56 | timeout 1 ping -c 1 "$RANCHER_IP" && break |
Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 57 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 58 | echo Error: OpenStack infrastructure issue: unable to reach rancher "$RANCHER_IP" |
Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 59 | sleep 10 |
| 60 | done |
| 61 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 62 | if ! timeout 1 ping -c 1 "$RANCHER_IP"; then |
Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 63 | exit 2 |
| 64 | fi |
| 65 | |
Gary Wu | d3337f0 | 2018-05-24 10:51:23 -0700 | [diff] [blame] | 66 | ssh-keygen -R $RANCHER_IP |
| 67 | |
Gary Wu | 0d28fe6 | 2018-05-24 20:54:28 -0700 | [diff] [blame] | 68 | ssh -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 Wu | d257997 | 2018-05-23 12:36:46 -0700 | [diff] [blame] | 69 | |
Gary Wu | 5627a69 | 2018-05-08 19:13:59 -0700 | [diff] [blame] | 70 | for n in $(seq 1 6); do |
Gary Wu | c474970 | 2018-06-26 14:27:41 -0700 | [diff] [blame] | 71 | echo "Wait count $n of 6" |
| 72 | sleep 15m |
Gary Wu | 0d28fe6 | 2018-05-24 20:54:28 -0700 | [diff] [blame] | 73 | timeout 15m ssh -i $SSH_KEY ubuntu@$RANCHER_IP 'sudo su -l root -c "/root/oom/kubernetes/robot/ete-k8s.sh onap health"' |
Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 74 | RESULT=$? |
| 75 | if [ $RESULT -eq 0 ]; then |
| 76 | break |
| 77 | fi |
Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 78 | done |
Gary Wu | 0d28fe6 | 2018-05-24 20:54:28 -0700 | [diff] [blame] | 79 | ROBOT_POD=$(ssh -i $SSH_KEY ubuntu@$RANCHER_IP 'sudo su -c "kubectl --namespace onap get pods"' | grep robot | sed 's/ .*//') |
Gary Wu | d257997 | 2018-05-23 12:36:46 -0700 | [diff] [blame] | 80 | if [ "$ROBOT_POD" == "" ]; then |
| 81 | exit 1 |
| 82 | fi |
Gary Wu | 36e42dd | 2018-05-03 07:29:53 -0700 | [diff] [blame] | 83 | |
Gary Wu | 43159fb | 2018-05-25 08:08:36 -0700 | [diff] [blame] | 84 | LOG_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 Wu | d257997 | 2018-05-23 12:36:46 -0700 | [diff] [blame] | 85 | if [ "$LOG_DIR" == "" ]; then |
| 86 | exit 1 |
| 87 | fi |
| 88 | |
| 89 | echo "kubectl cp -n onap $ROBOT_POD:share/logs/$LOG_DIR /tmp/robot/logs/$LOG_DIR" | ssh -i $SSH_KEY ubuntu@$RANCHER_IP sudo su |
| 90 | rsync -e "ssh -i $SSH_KEY" -avtz ubuntu@$RANCHER_IP:/tmp/robot/logs/$LOG_DIR/ $WORKSPACE/archives/ |
| 91 | |
| 92 | echo "Browse Robot results at http://$K8S_IP:30209/logs/$LOG_DIR/" |
| 93 | |
Gary Wu | cbddc2b | 2018-01-22 13:33:21 -0800 | [diff] [blame] | 94 | exit 0 |