Guillaume Lambert | 85b1492 | 2021-03-12 13:53:18 +0100 | [diff] [blame^] | 1 | #!/bin/sh |
Guillaume Lambert | 824f996 | 2021-03-09 16:56:08 +0100 | [diff] [blame] | 2 | |
Sylvain Desbureaux | 16bdf24 | 2020-12-07 10:28:24 +0100 | [diff] [blame] | 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 | |
Sylvain Desbureaux | 16bdf24 | 2020-12-07 10:28:24 +0100 | [diff] [blame] | 17 | # |
| 18 | # Run the health-check testsuites for the tags discovered by helm list |
| 19 | # Please clean up logs when you are done... |
| 20 | # |
Guillaume Lambert | 5f4af05 | 2021-03-09 21:52:32 +0100 | [diff] [blame] | 21 | if [ "$1" = "" ] ; then |
Sylvain Desbureaux | 16bdf24 | 2020-12-07 10:28:24 +0100 | [diff] [blame] | 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 | |
Guillaume Lambert | ba6e50f | 2021-04-26 21:46:56 +0200 | [diff] [blame] | 47 | if [ "${!#}" = "execscript" ]; then |
Sylvain Desbureaux | 16bdf24 | 2020-12-07 10:28:24 +0100 | [diff] [blame] | 48 | for script in $(ls -1 "$DIR/$SCRIPTDIR"); do |
Guillaume Lambert | d9017ef | 2021-03-08 21:38:31 +0100 | [diff] [blame] | 49 | [ -f "$DIR/$SCRIPTDIR/$script" ] && [ -x "$DIR/$SCRIPTDIR/$script" ] && . "$DIR/$SCRIPTDIR/$script" |
Sylvain Desbureaux | 16bdf24 | 2020-12-07 10:28:24 +0100 | [diff] [blame] | 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 |