Brian Freeman | 9bf28ee | 2019-04-11 12:28:52 -0500 | [diff] [blame] | 1 | # 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 | # |
kaihlavi | e290382 | 2019-05-10 08:57:14 +0300 | [diff] [blame] | 18 | # Run the health-check testsuites for the tags discovered by helm list |
Brian Freeman | 9bf28ee | 2019-04-11 12:28:52 -0500 | [diff] [blame] | 19 | # Please clean up logs when you are done... |
Brian Freeman | 9bf28ee | 2019-04-11 12:28:52 -0500 | [diff] [blame] | 20 | # |
| 21 | if [ "$1" == "" ] ; then |
marekpl | 1b6baa4 | 2019-08-02 18:11:42 +0200 | [diff] [blame] | 22 | echo "Usage: eteHelm-k8s.sh [namespace] [execscript]" |
kaihlavi | e87aac1 | 2019-05-09 16:31:15 +0300 | [diff] [blame] | 23 | echo " list projects via helm list and runs health-check with those tags except dev and dev-consul" |
marekpl | 1b6baa4 | 2019-08-02 18:11:42 +0200 | [diff] [blame] | 24 | echo " [execscript] - optional parameter to execute user custom scripts located in scripts/helmscript directory" |
Brian Freeman | 9bf28ee | 2019-04-11 12:28:52 -0500 | [diff] [blame] | 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 | |
DR695H | 6ad3160 | 2019-07-29 15:06:52 -0400 | [diff] [blame] | 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) |
Brian Freeman | 9bf28ee | 2019-04-11 12:28:52 -0500 | [diff] [blame] | 35 | |
| 36 | TAGS="" |
| 37 | for project in $PROJECTS ; |
| 38 | do |
| 39 | TAGS="$TAGS -i $project" |
| 40 | done |
| 41 | |
marekpl | 1b6baa4 | 2019-08-02 18:11:42 +0200 | [diff] [blame] | 42 | DIR=$(dirname "$0") |
| 43 | SCRIPTDIR=scripts/helmscript |
Brian Freeman | 9bf28ee | 2019-04-11 12:28:52 -0500 | [diff] [blame] | 44 | |
| 45 | ETEHOME=/var/opt/ONAP |
marekpl | 1b6baa4 | 2019-08-02 18:11:42 +0200 | [diff] [blame] | 46 | |
| 47 | if [[ "${!#}" == "execscript" ]]; then |
| 48 | for script in $(ls -1 "$DIR/$SCRIPTDIR"); do |
| 49 | [ -f "$DIR/$SCRIPTDIR/$script" ] && [ -x "$DIR/$SCRIPTDIR/$script" ] && source "$DIR/$SCRIPTDIR/$script" |
| 50 | done |
| 51 | fi |
| 52 | |
Brian Freeman | 9bf28ee | 2019-04-11 12:28:52 -0500 | [diff] [blame] | 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 | |
DR695H | 1f1bf37 | 2019-08-02 15:42:32 -0400 | [diff] [blame] | 57 | VARIABLEFILES="-V /share/config/robot_properties.py" |
Brian Freeman | 9bf28ee | 2019-04-11 12:28:52 -0500 | [diff] [blame] | 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 |