Add rsm and dbaas1 charts
[it/dep.git] / ric-platform / 50-RIC-Platform / bin / install
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     -c) LIST_OF_COMPONENTS=$2
26         shift
27         ;;
28     *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
29
30     esac
31
32     shift
33
34 done
35
36
37 if [ -z "$OVERRIDEYAML" ];then
38     echo "****************************************************************************************************************"
39     echo "                                                     ERROR                                                      "
40     echo "****************************************************************************************************************"
41     echo "RIC deployment without deployment recipe is currently disabled. Please specify an recipe with the -f option."
42     echo "****************************************************************************************************************"
43     exit 1
44 fi
45
46 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
47 GLOBAL_BLOCK=$(cat $OVERRIDEYAML | awk '/^global:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
48 NAMESPACE_BLOCK=$(cat $OVERRIDEYAML | awk '/^  namespace:/{getline; while ($0 ~ /^    .*|^ *$/) {print $0; if (getline == 0) {break}}}')
49 NAMESPACE=$(echo "$NAMESPACE_BLOCK" | awk '/^ *platform:/{print $2}')
50 RELEASE_PREFIX=$(echo "$GLOBAL_BLOCK" | awk '/^ *releasePrefix:/{print $2}')
51 COMPONENTS=${LIST_OF_COMPONENTS:-"appmgr rtmgr dbaas1 e2mgr e2term a1mediator submgr vespamgr rsm jaegeradapter"}
52
53 echo "Deploying RIC infra components [$COMPONENTS]"
54
55
56 COMMON_CHART_VERSION=$(cat $DIR/../../../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
57 helm package -d /tmp $DIR/../../../ric-common/Common-Template/helm/ric-common
58
59
60 for component in $COMPONENTS; do
61
62   mkdir -p $DIR/../helm/$component/charts/
63   cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/../helm/$component/charts/
64   helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_PREFIX}-$component" $DIR/../helm/$component
65 done