blob: eab4dc21b349fae6380446d6166fdc07a4a6fcc2 [file] [log] [blame]
Lathish7e090012020-04-01 17:38:20 +01001#!/bin/bash
2################################################################################
3# Copyright (c) 2020 Nordix Foundation. #
4# #
5# Licensed under the Apache License, Version 2.0 (the "License"); #
6# you may not use this file except in compliance with the License. #
7# You may obtain a copy of the License at #
8# #
9# http://www.apache.org/licenses/LICENSE-2.0 #
10# #
11# Unless required by applicable law or agreed to in writing, software #
12# distributed under the License is distributed on an "AS IS" BASIS, #
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
14# See the License for the specific language governing permissions and #
15# limitations under the License. #
16################################################################################
17
18# This script deploys NonRtRic components automatically
19
20if [ "$#" -eq 1 ]; then
21 OVERRIDEYAML=$1
22else
23
24 while [ -n "$1" ]; do # while loop starts
25
26 case "$1" in
27
28 -f) OVERRIDEYAML=$2
29 shift
30 ;;
31 *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
32
33 esac
34
35 shift
36
37 done
38fi
39
40
41if [ -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
48fi
49
50
51ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
52
53# Start Helm local repo if there isn't one
54HELM_REPO_PID=$(ps -x | grep "helm serve" | grep -v "grep" | awk '{print $1}')
55if [ -z "$HELM_REPO_PID" ]; then
56 nohup helm serve >& /dev/null &
57fi
58
Zhe Huang4d2d4f12020-04-23 15:13:30 -040059$ROOT_DIR/prepare-common-templates
Lathish7e090012020-04-01 17:38:20 +010060
61COMPONENTS=${LIST_OF_COMPONENTS:-"controlpanel a1controller a1simulator policymanagementservice"}
62echo "Packaging NONRTRIC components [$COMPONENTS]"
63
64for component in $COMPONENTS; do
65 helm dep up $ROOT_DIR/../nonrtric/helm/$component
66 VERSION=$(cat $ROOT_DIR/../nonrtric/helm/$component/Chart.yaml | grep version | awk '{print $2}')
67 helm package -d /tmp $ROOT_DIR/../nonrtric/helm/$component
68 cp /tmp/$component-$VERSION.tgz $HELM_HOME/repository/local/
69done
70
71helm repo index $HELM_HOME/repository/local/
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
77echo "Finished Packaging NONRTRIC components [$COMPONENTS]"
78
79$ROOT_DIR/../nonrtric/bin/install -f $OVERRIDEYAML