blob: 1d8ba538f9f4250f9fd4f0217395e7a369c2b0a8 [file] [log] [blame]
wrider1a8a09d2019-04-02 22:10:42 -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################################################################################
18
Zhe Huang96f1edd2019-07-12 17:06:51 -040019# This script deploys RIC aux components automatically
wrider1a8a09d2019-04-02 22:10:42 -040020
Zhe Huang9c381472019-09-09 16:56:35 -040021if [ "$#" -eq 1 ]; then
22 OVERRIDEYAML=$1
23else
24
25 while [ -n "$1" ]; do # while loop starts
26
27 case "$1" in
28
29 -f) OVERRIDEYAML=$2
30 shift
31 ;;
32 *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
33
34 esac
35
36 shift
37
38 done
39fi
40
wrider1a8a09d2019-04-02 22:10:42 -040041
Zhe Huang7f1e4092019-05-28 16:16:02 -040042if [ -z "$OVERRIDEYAML" ];then
Zhe Huang9c381472019-09-09 16:56:35 -040043 echo "****************************************************************************************************************"
44 echo " ERROR "
45 echo "****************************************************************************************************************"
46 echo "RIC deployment without deployment recipe is currently disabled. Please specify an recipe with the -f option."
47 echo "****************************************************************************************************************"
48 exit 1
Zhe Huang7f1e4092019-05-28 16:16:02 -040049fi
50
wrider1a8a09d2019-04-02 22:10:42 -040051
Zhe Huang96f1edd2019-07-12 17:06:51 -040052ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
Zhe Huang033ab422019-05-20 15:45:42 -040053
Zhe Huangdc00cdf2020-02-10 13:45:15 -050054# Start Helm local repo if there isn't one
55HELM_REPO_PID=$(ps -x | grep "helm serve" | grep -v "grep" | awk '{print $1}')
56if [ -z "$HELM_REPO_PID" ]; then
57 nohup helm serve >& /dev/null &
58fi
Zhe Huang96f1edd2019-07-12 17:06:51 -040059
Zhe Huangdc00cdf2020-02-10 13:45:15 -050060# Package ric-common and serve it using Helm local repo
61HELM_HOME=$(helm home)
62COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
63helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/ric-common
64cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
wrider1a8a09d2019-04-02 22:10:42 -040065
Zhe Huangdc00cdf2020-02-10 13:45:15 -050066AUX_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/aux-common/Chart.yaml | grep version | awk '{print $2}')
67helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/aux-common
68cp /tmp/aux-common-$COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
69
70helm repo index $HELM_HOME/repository/local/
71
72
73# Make sure that helm local repo is added
74helm repo remove local
75helm repo add local http://127.0.0.1:8879/charts
76
77
78$ROOT_DIR/../ric-aux/bin/install -f $OVERRIDEYAML