blob: caecdd9a97a64b72f4de8975af6fddfe42f4328a [file] [log] [blame]
dave kormann75b5b692019-04-20 16:01:59 -04001#!/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################################################################################
Zhe Huang9c381472019-09-09 16:56:35 -040018
19while [ -n "$1" ]; do # while loop starts
20
21 case "$1" in
22
23 -f) OVERRIDEYAML=$2
24 shift
25 ;;
26 -c) LIST_OF_COMPONENTS=$2
27 shift
28 ;;
29 *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
30
31 esac
32
33 shift
34
35done
36
37
38if [ -z "$OVERRIDEYAML" ];then
39 echo "****************************************************************************************************************"
40 echo " ERROR "
41 echo "****************************************************************************************************************"
42 echo "RIC deployment without deployment recipe is currently disabled. Please specify an recipe with the -f option."
43 echo "****************************************************************************************************************"
44 exit 1
45fi
46
dave kormann75b5b692019-04-20 16:01:59 -040047DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
Zhe Huang9c381472019-09-09 16:56:35 -040048GLOBAL_BLOCK=$(cat $OVERRIDEYAML | awk '/^global:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
49NAMESPACE_BLOCK=$(cat $OVERRIDEYAML | awk '/^ namespace:/{getline; while ($0 ~ /^ .*|^ *$/) {print $0; if (getline == 0) {break}}}')
50NAMESPACE=$(echo "$NAMESPACE_BLOCK" | awk '/^ *infra:/{print $2}')
51RELEASE_PREFIX=$(echo "$GLOBAL_BLOCK" | awk '/^ *releasePrefix:/{print $2}')
52COMPONENTS=${LIST_OF_COMPONENTS:-"xapp-tiller"}
dave kormann75b5b692019-04-20 16:01:59 -040053
Zhe Huang9c381472019-09-09 16:56:35 -040054echo "Deploying RIC infra components [$COMPONENTS]"
dave kormann75b5b692019-04-20 16:01:59 -040055
56
57COMMON_CHART_VERSION=$(cat $DIR/../../../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
58helm package -d /tmp $DIR/../../../ric-common/Common-Template/helm/ric-common
59
60
Zhe Huang9c381472019-09-09 16:56:35 -040061for component in $COMPONENTS; do
dave kormann75b5b692019-04-20 16:01:59 -040062
63 mkdir -p $DIR/../helm/$component/charts/
dave kormann75b5b692019-04-20 16:01:59 -040064 cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/../helm/$component/charts/
Zhe Huang9c381472019-09-09 16:56:35 -040065 EMPTY_CHART=$(helm template -f $OVERRIDEYAML $DIR/../helm/$component | grep apiVersion:)
66 if [ ! -z "$EMPTY_CHART" ]; then
67 helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_PREFIX}-$component" $DIR/../helm/$component
dave kormann75b5b692019-04-20 16:01:59 -040068 fi
69done