blob: c58d8a87756a790c9a584c7899d009c11e54b9e2 [file] [log] [blame]
Brian Freeman31631512019-04-11 12:28:52 -05001# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#!/bin/bash
16
17#
kaihlavi30824ba2019-05-10 08:57:14 +030018# Run the health-check testsuites for the tags discovered by helm list
Brian Freeman31631512019-04-11 12:28:52 -050019# Please clean up logs when you are done...
Brian Freeman31631512019-04-11 12:28:52 -050020#
21if [ "$1" == "" ] ; then
kaihlavi30824ba2019-05-10 08:57:14 +030022 echo "Usage: eteHelm-k8s.sh [namespace]"
kaihlavi7a411102019-05-09 16:31:15 +030023 echo " list projects via helm list and runs health-check with those tags except dev and dev-consul"
Brian Freeman31631512019-04-11 12:28:52 -050024 exit
25fi
26
27set -x
28
29export NAMESPACE="$1"
30
31POD=$(kubectl --namespace $NAMESPACE get pods | sed 's/ .*//'| grep robot)
32
Brian Freeman32ad67d2019-04-26 12:18:41 -050033PROJECTS=$(helm list | tail +3 | grep '-' | cut -d' ' -f1 | sed -E 's/\w+-(\w+)/health-\1/g' | grep -v consul | grep -v nfs-provision)
Brian Freeman31631512019-04-11 12:28:52 -050034
35TAGS=""
36for project in $PROJECTS ;
37do
38TAGS="$TAGS -i $project"
39done
40
41
42ETEHOME=/var/opt/ONAP
43export GLOBAL_BUILD_NUMBER=$(kubectl --namespace $NAMESPACE exec ${POD} -- bash -c "ls -1q /share/logs/ | wc -l")
44OUTPUT_FOLDER=$(printf %04d $GLOBAL_BUILD_NUMBER)_ete_helmlist
45DISPLAY_NUM=$(($GLOBAL_BUILD_NUMBER + 90))
46
47VARIABLEFILES="-V /share/config/vm_properties.py -V /share/config/integration_robot_properties.py -V /share/config/integration_preload_parameters.py"
48VARIABLES="-v GLOBAL_BUILD_NUMBER:$$"
49
50kubectl --namespace $NAMESPACE exec ${POD} -- ${ETEHOME}/runTags.sh ${VARIABLEFILES} ${VARIABLES} -d /share/logs/${OUTPUT_FOLDER} ${TAGS} --display $DISPLAY_NUM