c2819ae6af01182e0f622bb35db8d46764b0db3e
[it/dep.git] / ric-infra / 20-Monitoring / 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 '/^ *infra:/{print $2}')
50 RELEASE_PREFIX=$(echo "$GLOBAL_BLOCK" | awk '/^ *releasePrefix:/{print $2}')
51 COMPONENTS=${LIST_OF_COMPONENTS:-"elfkp"}
52
53 echo "Deploying RIC infra components [$COMPONENTS]"
54
55
56
57
58 for component in $COMPONENTS; do
59
60   mkdir -p $DIR/../helm/$component/charts/
61   pushd $DIR/../helm/$component/
62   helm dep update
63   popd
64
65   #ELASTIC_SEARCH_HOST="${RELEASE_NAME}-${component}-elasticsearch-client.${NAMESPACE}.svc.cluster.local"
66   #ELASTIC_SEARCH_PORT=9200
67   #CMD="helm install --debug \
68   #   --namespace ${NAMESPACE} --name ${RELEASE_NAME}-${component_clean} \
69   #   -f ../helm/$component/values.yaml \
70   #   --set kibana.env.ELASTICSEARCH_URL=http://${ELASTIC_SEARCH_HOST}:${ELASTIC_SEARCH_PORT} \
71   #   --set logstash.elasticsearch.host=${ELASTIC_SEARCH_HOST} \
72   #   --set logstash.elasticsearch.host=${ELASTIC_SEARCH_PORT} \
73   #   $component"
74   #eval "$CMD"
75   helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_PREFIX}-$component" $DIR/../helm/$component
76 done