blob: 7977c6a558aca89819ede13832360f89f7340398 [file] [log] [blame]
eHanan97b7a9c2018-09-05 14:09:19 +01001#!/bin/bash
Gary Wua3fb86f2018-06-04 16:23:54 -07002#
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 Wucbddc2b2018-01-22 13:33:21 -080011
eHanan97b7a9c2018-09-05 14:09:19 +010012stack_name="oom"
Gary Wu4a69d512018-12-10 11:31:24 -080013portal_hostname="portal.api.simpledemo.onap.org"
eHanan58ccb9d2018-08-07 14:09:26 +010014full_deletion=false
15
Gary Wucbddc2b2018-01-22 13:33:21 -080016if [ -z "$WORKSPACE" ]; then
17 export WORKSPACE=`git rev-parse --show-toplevel`
18fi
19
eHanan97b7a9c2018-09-05 14:09:19 +010020usage() {
Gary Wu4a69d512018-12-10 11:31:24 -080021 echo "Usage: $0 [ -n <number of VMs {2-15}> ][ -s <stack name> ][ -m <manifest> ][ -d <domain> ][ -r ][ -q ] <env>" 1>&2;
eHanan97b7a9c2018-09-05 14:09:19 +010022
23 echo "n: Set the number of VM's that will be installed. This number must be between 2 and 15" 1>&2;
24 echo "s: Set the name to be used for stack. This name will be used for naming of resources" 1>&2;
Gary Wu4a69d512018-12-10 11:31:24 -080025 echo "d: Set the base domain name to be used in portal UI URLs" 1>&2;
Gary Wu03e724f2018-09-07 22:03:48 -070026 echo "m: The docker manifest to apply; must be either \"docker-manifest-staging.csv\" or \"docker-manifest.csv\"." 1>&2;
eHanan97b7a9c2018-09-05 14:09:19 +010027 echo "r: Delete all resources relating to ONAP within enviroment." 1>&2;
28 echo "q: Quiet Delete of all ONAP resources." 1>&2;
29
30 exit 1;
31}
eHanan58ccb9d2018-08-07 14:09:26 +010032
Gary Wucbddc2b2018-01-22 13:33:21 -080033
Gary Wu4a69d512018-12-10 11:31:24 -080034while getopts ":n:s:d:m:rq" o; do
eHanan58ccb9d2018-08-07 14:09:26 +010035 case "${o}" in
eHanan97b7a9c2018-09-05 14:09:19 +010036 n)
37 if [[ ${OPTARG} =~ ^[0-9]+$ ]];then
38 if [ ${OPTARG} -ge 2 -a ${OPTARG} -le 15 ]; then
39 vm_num=${OPTARG}
40 else
41 usage
42 fi
43 else
44 usage
45 fi
46 ;;
47 s)
48 if [[ ! ${OPTARG} =~ ^[0-9]+$ ]];then
49 stack_name=${OPTARG}
50 else
51 usage
52 fi
53 ;;
Gary Wu4a69d512018-12-10 11:31:24 -080054 d)
55 if [[ ! ${OPTARG} =~ ^[0-9]+$ ]];then
56 portal_hostname=${OPTARG}
57 else
58 usage
59 fi
60 ;;
Gary Wu03e724f2018-09-07 22:03:48 -070061 m)
62 if [ -f $WORKSPACE/version-manifest/src/main/resources/${OPTARG} ]; then
63 docker_manifest=${OPTARG}
64 else
65 usage
66 fi
67 ;;
eHanan58ccb9d2018-08-07 14:09:26 +010068 r)
69 echo "The following command will delete all information relating to onap within your enviroment"
70 read -p "Are you certain this is what you want? (type y to confirm):" answer
71
72 if [ $answer = "y" ] || [ $answer = "Y" ] || [ $answer = "yes" ] || [ $answer = "Yes"]; then
73 echo "This may delete the work of other colleages within the same enviroment"
74 read -p "Are you certain this is what you want? (type y to confirm):" answer2
Gary Wu87aa8b52018-08-09 08:10:24 -070075
eHanan58ccb9d2018-08-07 14:09:26 +010076 if [ $answer2 = "y" ] || [ $answer2 = "Y" ] || [ $answer2 = "yes" ] || [ $answer2 = "Yes"]; then
77 full_deletion=true
Gary Wu87aa8b52018-08-09 08:10:24 -070078 else
eHanan58ccb9d2018-08-07 14:09:26 +010079 echo "Ending program"
80 exit 1
81 fi
Gary Wu87aa8b52018-08-09 08:10:24 -070082 else
eHanan58ccb9d2018-08-07 14:09:26 +010083 echo "Ending program"
84 exit 1
85 fi
86 ;;
87 q)
88 full_deletion=true
89 ;;
90 *)
91 usage
92 ;;
93 esac
94done
95shift $((OPTIND-1))
96
Gary Wu87aa8b52018-08-09 08:10:24 -070097if [ "$#" -ne 1 ]; then
98 usage
99fi
100
101ENV_FILE=$1
102
eHanan97b7a9c2018-09-05 14:09:19 +0100103if [ ! -f $ENV_FILE ];then
104 echo ENV file does not exist or was not given
105 exit 1
106fi
107
108set -x
109
Gary Wu0d28fe62018-05-24 20:54:28 -0700110SSH_KEY=~/.ssh/onap_key
111
Gary Wu808b13d2018-02-13 18:28:37 -0800112source $WORKSPACE/test/ete/scripts/install_openstack_cli.sh
113
Gary Wu11c98742018-05-02 16:19:04 -0700114SO_ENCRYPTION_KEY=aa3871669d893c7fb8abbcda31b88b4f
115export OS_PASSWORD_ENCRYPTED=$(echo -n "$OS_PASSWORD" | openssl aes-128-ecb -e -K "$SO_ENCRYPTION_KEY" -nosalt | xxd -c 256 -p)
116
Gary Wucbddc2b2018-01-22 13:33:21 -0800117for n in $(seq 1 5); do
Gary Wu87aa8b52018-08-09 08:10:24 -0700118 if [ $full_deletion = true ] ; then
eHanan97b7a9c2018-09-05 14:09:19 +0100119 $WORKSPACE/test/ete/scripts/teardown-onap.sh -n $stack_name -q
Gary Wu87aa8b52018-08-09 08:10:24 -0700120 else
eHanan97b7a9c2018-09-05 14:09:19 +0100121 $WORKSPACE/test/ete/scripts/teardown-onap.sh -n $stack_name
eHanan58ccb9d2018-08-07 14:09:26 +0100122 fi
Gary Wucbddc2b2018-01-22 13:33:21 -0800123
124 cd $WORKSPACE/deployment/heat/onap-oom
Gary Wu374498a2018-02-06 17:31:04 -0800125 envsubst < $ENV_FILE > $ENV_FILE~
eHanan97b7a9c2018-09-05 14:09:19 +0100126 if [ -z "$vm_num" ]; then
127 cp onap-oom.yaml onap-oom.yaml~
128 else
129 ./scripts/gen-onap-oom-yaml.sh $vm_num > onap-oom.yaml~
130 fi
Gary Wud2579972018-05-23 12:36:46 -0700131
Gary Wu4a69d512018-12-10 11:31:24 -0800132 if ! openstack stack create -t ./onap-oom.yaml~ -e $ENV_FILE~ $stack_name --parameter docker_manifest=$docker_manifest --parameter portal_hostname=$portal_hostname; then
Gary Wud2579972018-05-23 12:36:46 -0700133 break
134 fi
135
eHanan97b7a9c2018-09-05 14:09:19 +0100136 while [ "CREATE_IN_PROGRESS" == "$(openstack stack show -c stack_status -f value $stack_name)" ]; do
Gary Wud2579972018-05-23 12:36:46 -0700137 sleep 20
138 done
139
eHanan97b7a9c2018-09-05 14:09:19 +0100140 STATUS=$(openstack stack show -c stack_status -f value $stack_name)
Gary Wud2579972018-05-23 12:36:46 -0700141 echo $STATUS
142 if [ "CREATE_COMPLETE" != "$STATUS" ]; then
143 break
144 fi
Gary Wucbddc2b2018-01-22 13:33:21 -0800145
Gary Wuae7c7642018-04-19 17:22:34 -0700146 for i in $(seq 1 30); do
147 sleep 30
eHanan97b7a9c2018-09-05 14:09:19 +0100148 RANCHER_IP=$(openstack stack output show $stack_name rancher_vm_ip -c output_value -f value)
Gary Wu48a32942018-11-08 07:34:49 -0800149 K8S_IP=$(openstack stack output show $stack_name k8s_01_vm_ip -c output_value -f value)
Gary Wu14a6b302018-05-01 15:59:28 -0700150 timeout 1 ping -c 1 "$RANCHER_IP" && break
Gary Wucbddc2b2018-01-22 13:33:21 -0800151 done
152
Gary Wu14a6b302018-05-01 15:59:28 -0700153 timeout 1 ping -c 1 "$RANCHER_IP" && break
Gary Wucbddc2b2018-01-22 13:33:21 -0800154
Gary Wu14a6b302018-05-01 15:59:28 -0700155 echo Error: OpenStack infrastructure issue: unable to reach rancher "$RANCHER_IP"
Gary Wucbddc2b2018-01-22 13:33:21 -0800156 sleep 10
157done
158
Gary Wu14a6b302018-05-01 15:59:28 -0700159if ! timeout 1 ping -c 1 "$RANCHER_IP"; then
Gary Wucbddc2b2018-01-22 13:33:21 -0800160 exit 2
161fi
162
Gary Wud3337f02018-05-24 10:51:23 -0700163ssh-keygen -R $RANCHER_IP
164
Gary Wub0e36502018-10-16 11:01:07 -0700165sleep 2m
Gary Wu0d28fe62018-05-24 20:54:28 -0700166ssh -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 Wud2579972018-05-23 12:36:46 -0700167
Gary Wu895a4ac2018-10-31 12:30:54 -0700168PREV_RESULT=0
169for n in $(seq 1 20); do
170 RESULT=$(ssh -i $SSH_KEY ubuntu@$RANCHER_IP 'sudo su -c "kubectl -n onap get pods"' | grep -vE 'Running|Complete|NAME' | wc -l)
171 if [[ $? -eq 0 && ( $RESULT -eq 0 || $RESULT -eq $PREV_RESULT ) ]]; then
172 break
173 fi
174 sleep 15m
175 PREV_RESULT=$RESULT
Gary Wucbddc2b2018-01-22 13:33:21 -0800176done
Gary Wu895a4ac2018-10-31 12:30:54 -0700177
178PREV_RESULT=0
179for n in $(seq 1 20); do
180 echo "Wait for HEALTHCHECK count $n of 10"
181 ROBOT_POD=$(ssh -i $SSH_KEY ubuntu@$RANCHER_IP 'sudo su -c "kubectl --namespace onap get pods"' | grep robot | sed 's/ .*//')
182 ssh -i $SSH_KEY ubuntu@$RANCHER_IP 'sudo su -l root -c "/root/oom/kubernetes/robot/ete-k8s.sh onap health"'
183 RESULT=$?
184 if [[ $RESULT -lt 10 && ( $RESULT -eq 0 || $RESULT -eq $PREV_RESULT ) ]]; then
185 break
186 fi
187 sleep 15m
188 PREV_RESULT=$RESULT
189done
Gary Wud2579972018-05-23 12:36:46 -0700190if [ "$ROBOT_POD" == "" ]; then
Gary Wu895a4ac2018-10-31 12:30:54 -0700191 exit 1
Gary Wud2579972018-05-23 12:36:46 -0700192fi
Gary Wu36e42dd2018-05-03 07:29:53 -0700193
Gary Wu43159fb2018-05-25 08:08:36 -0700194LOG_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 Wud2579972018-05-23 12:36:46 -0700195echo "kubectl cp -n onap $ROBOT_POD:share/logs/$LOG_DIR /tmp/robot/logs/$LOG_DIR" | ssh -i $SSH_KEY ubuntu@$RANCHER_IP sudo su
Gary Wud2579972018-05-23 12:36:46 -0700196echo "Browse Robot results at http://$K8S_IP:30209/logs/$LOG_DIR/"
Gary Wu895a4ac2018-10-31 12:30:54 -0700197mkdir -p $WORKSPACE/archives/healthcheck
198rsync -e "ssh -i $SSH_KEY" -avtz ubuntu@$RANCHER_IP:/tmp/robot/logs/$LOG_DIR/ $WORKSPACE/archives/healthcheck
Gary Wud2579972018-05-23 12:36:46 -0700199
Gary Wucbddc2b2018-01-22 13:33:21 -0800200exit 0