[COMMON] Enforce checkbashisms tox profile
[oom.git] / kubernetes / robot / eteHelm-k8s.sh
1 #!/bin/sh
2
3 # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
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 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 #
18 # Run the health-check testsuites for the tags discovered by helm list
19 # Please clean up logs when you are done...
20 #
21 if [ "$1" = "" ] ;  then
22    echo "Usage: eteHelm-k8s.sh [namespace] [execscript]"
23    echo " list projects via helm list and runs health-check with those tags except dev and dev-consul"
24    echo " [execscript] - optional parameter to execute user custom scripts located in scripts/helmscript directory"
25    exit
26 fi
27
28 set -x
29
30 export NAMESPACE="$1"
31
32 POD=$(kubectl --namespace $NAMESPACE get pods | sed 's/ .*//'| grep robot)
33
34 PROJECTS=$(helm list | tail -n +3 | grep '-' | cut -d' ' -f1 | sed -E 's/\w+-(\w+)/health-\1/g' | grep -v consul | grep -v nfs-provision)
35
36 TAGS=""
37 for project in $PROJECTS ;
38 do
39 TAGS="$TAGS -i $project"
40 done
41
42 DIR=$(dirname "$0")
43 SCRIPTDIR=scripts/helmscript
44
45 ETEHOME=/var/opt/ONAP
46
47 if [ "${!#}" = "execscript" ]; then
48    for script in $(ls -1 "$DIR/$SCRIPTDIR"); do
49       [ -f "$DIR/$SCRIPTDIR/$script" ] && [ -x "$DIR/$SCRIPTDIR/$script" ] && . "$DIR/$SCRIPTDIR/$script"
50    done
51 fi
52
53 export GLOBAL_BUILD_NUMBER=$(kubectl --namespace $NAMESPACE exec  ${POD}  -- bash -c "ls -1q /share/logs/ | wc -l")
54 OUTPUT_FOLDER=$(printf %04d $GLOBAL_BUILD_NUMBER)_ete_helmlist
55 DISPLAY_NUM=$(($GLOBAL_BUILD_NUMBER + 90))
56
57 VARIABLEFILES="-V /share/config/robot_properties.py"
58 VARIABLES="-v GLOBAL_BUILD_NUMBER:$$"
59
60 kubectl --namespace $NAMESPACE exec ${POD} -- ${ETEHOME}/runTags.sh ${VARIABLEFILES} ${VARIABLES} -d /share/logs/${OUTPUT_FOLDER} ${TAGS} --display $DISPLAY_NUM