Extend K8S and RIC installation instructions
[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 ESREADER_BLOCK=$(cat $OVERRIDEYAML | awk '/^esreader:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
58
59 USE_LOCAL_HELM_REPO=$(echo "$CHARTMUSEUM_BLOCK" | grep "enable" | awk '{print $2}')
60 DEPLOY_K8S=$(echo "$K8S_BLOCK" | grep "enable" | awk '{print $2}')
61 DEPLOY_K8S_MONITORING=$(echo "$ELFKP_BLOCK" | grep "enable" | awk '{print $2}')
62 DEPLOY_ESREADER=$(echo "$ESREADER_BLOCK" | grep "enable" | awk 'NR==1 {print $2}')
63
64
65 for component in $ROOT_DIR/../ric-infra/*/; do
66         component_name=$(echo $component | awk '{n=split($0, temp,"/"); print temp[n-1];}')
67
68         case "$component_name" in
69                 00-Kubernetes)
70                         if [ "$DEPLOY_K8S" == "true" ];then
71                                 . $component/bin/install -f $OVERRIDEYAML
72                         fi
73                 ;;
74                 15-Chartmuseum)
75                         if [ "$USE_LOCAL_HELM_REPO" == "true" ];then
76                                 . $component/bin/install -f $OVERRIDEYAML
77                         fi
78                 ;;
79                 20-Monitoring)
80                         if [ "$DEPLOY_K8S_MONITORING" == "true" ];then
81                                 . $component/bin/install -f $OVERRIDEYAML
82                         fi
83                 ;;
84                 25-ESReader)
85                         if [ "$DEPLOY_ESREADER" == "true" ];then
86                                 . $component/bin/install -f $OVERRIDEYAML
87                         fi
88                 ;;
89                 30-Kong)
90                         . $component/bin/install -f $OVERRIDEYAML
91                         sleep 5
92                 ;;
93                 *)
94                     . $component/bin/install -f $OVERRIDEYAML
95         
96         esac
97 done
98
99
100