beef up the AI/ML framework tests by adding InfluxDB as data source and populate...
[it/test.git] / ric_robot_suite / helm / ric-robot / robot_install.sh
1 #!/bin/bash
2 ################################################################################
3 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
4 #   Copyright (c) 2019 Nokia.                                                  #
5 #                                                                              #
6 #   Licensed under the Apache License, Version 2.0 (the "License");            #
7 #   you may not use this file except in compliance with the License.           #
8 #   You may obtain a copy of the License at                                    #
9 #                                                                              #
10 #       http://www.apache.org/licenses/LICENSE-2.0                             #
11 #                                                                              #
12 #   Unless required by applicable law or agreed to in writing, software        #
13 #   distributed under the License is distributed on an "AS IS" BASIS,          #
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
15 #   See the License for the specific language governing permissions and        #
16 #   limitations under the License.                                             #
17 ################################################################################
18 while [ -n "$1" ]; do # while loop starts
19
20     case "$1" in
21
22     -f) OVERRIDEYAML=$2
23         shift
24         ;;
25     *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
26
27     esac
28
29     shift
30
31 done
32
33
34 if [ -z "$OVERRIDEYAML" ];then
35     echo "****************************************************************************************************************"
36     echo "                                                     ERROR                                                      "
37     echo "****************************************************************************************************************"
38     echo "RIC robot deployment without deployment recipe/override is currently disabled. Please specify an recipe/ovrride  with the -f option."
39     echo "   the deployment recipe/override should be the same file as is used for RIC platform deplpoyment "
40     echo "****************************************************************************************************************"
41     exit 1
42 fi
43
44 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
45 GLOBAL_BLOCK=$(cat $OVERRIDEYAML | awk '/^global:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
46 NAMESPACE_BLOCK=$(cat $OVERRIDEYAML | awk '/^  namespace:/{getline; while ($0 ~ /^    .*|^ *$/) {print $0; if (getline == 0) {break}}}')
47 NAMESPACE=$(echo "$NAMESPACE_BLOCK" | awk '/^ *platform:/{print $2}')
48 RELEASE_PREFIX=$(echo "$GLOBAL_BLOCK" | awk '/^ *releasePrefix:/{print $2}')
49 COMPONENTS=ric-robot
50
51 echo "Deploying RIC [$COMPONENTS]"
52
53
54 COMMON_CHART_VERSION=$(cat $DIR/../../../dep/ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
55 helm package -d /tmp $DIR/../../../dep/ric-common/Common-Template/helm/ric-common
56
57
58 for component in $COMPONENTS; do
59
60   mkdir -p $DIR/$component/charts/
61   cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/$component/charts/
62   helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_PREFIX}-$component" $DIR/../helm/$component
63 done
64
65 echo "RELEASE_NAMESPACE=${NAMESPACE}" > /tmp/ric-robot.conf
66 echo "RELEASE_NAME=${RELEASE_PREFIX}" >> /tmp/ric-robot.conf
67 echo "OVERRIDEYAML=${OVERRIDEYAML}" >> /tmp/ric-robot.conf
68