a5cb94bef4fdbbd664abfd70ab93720c1a9f08e6
[it/dep.git] / bin / deploy-ric-infra
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
19 if [ "$#" -eq 1 ]; then
20     OVERRIDEYAML=$1
21 else
22
23     while [ -n "$1" ]; do # while loop starts
24
25         case "$1" in
26
27         -f) OVERRIDEYAML=$2
28             shift
29             ;;
30         *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
31
32         esac
33
34         shift
35
36     done
37 fi
38
39
40
41 if [ -z "$OVERRIDEYAML" ];then
42     echo "****************************************************************************************************************"
43     echo "                                                     ERROR                                                      "
44     echo "****************************************************************************************************************"
45     echo "RIC deployment without deployment recipe is currently disabled. Please specify an recipe with the -f option."
46     echo "****************************************************************************************************************"
47     exit 1
48 fi
49
50
51 ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
52
53
54 CHARTMUSEUM_BLOCK=$(cat $OVERRIDEYAML | awk '/^chartmuseum:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
55 ELFKP_BLOCK=$(cat $OVERRIDEYAML | awk '/^elfkp:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
56 K8S_BLOCK=$(cat $OVERRIDEYAML | awk '/^k8s:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
57
58 USE_LOCAL_HELM_REPO=$(echo "$CHARTMUSEUM_BLOCK" | grep "enable" | awk '{print $2}')
59 DEPLOY_K8S=$(echo "$K8S_BLOCK" | grep "enable" | awk '{print $2}')
60 DEPLOY_K8S_MONITORING=$(echo "$ELFKP_BLOCK" | grep "enable" | awk '{print $2}')
61
62
63 for component in $ROOT_DIR/../ric-infra/*/; do
64         component_name=$(echo $component | awk '{n=split($0, temp,"/"); print temp[n-1];}')
65
66         case "$component_name" in
67                 00-Kubernetes)
68                         if [ "$DEPLOY_K8S" == "true" ];then
69                                 . $component/bin/install -f $OVERRIDEYAML
70                         fi
71                 ;;
72                 15-Chartmuseum)
73                         if [ "$USE_LOCAL_HELM_REPO" == "true" ];then
74                                 . $component/bin/install -f $OVERRIDEYAML
75                         fi
76                 ;;
77                 20-Monitoring)
78                         if [ "$DEPLOY_K8S_MONITORING" == "true" ];then
79                                 . $component/bin/install -f $OVERRIDEYAML
80                         fi
81                 ;;
82                 30-Kong)
83                         . $component/bin/install -f $OVERRIDEYAML
84                         sleep 5
85                 ;;
86                 *)
87                     . $component/bin/install -f $OVERRIDEYAML
88         
89         esac
90 done
91
92
93