Enhanced SIM for E2AP v1 for TS UC
[sim/e2-interface.git] / e2sim / e2apv1sim / helm / e2sim_install.sh
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
20 OVERRIDEYAML=$1
21
22
23 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
24
25 #/root/test/ric_robot_suite/helm
26 # extract the base to find root to dep
27
28 BASE=${DIR%/test*}
29
30 # /data/ORAN-OSC/it/dep/ric-platform/50-RIC-Platform/bin/install
31 BASEDIR05=$BASE/dep/ric-platform/50-RIC-Platform/
32 BASEDIRCOMMON=$BASE/dep/ric-common/Common-Template/helm/ric-common
33
34 echo "Using etc/ric.conf from $BASEDIR05"
35
36
37 source $BASEDIR05/etc/ric.conf
38
39
40 if [ -z "$RICPLT_RELEASE_NAME" ];then
41    RELEASE_NAME=$helm_release_name
42 else
43    RELEASE_NAME=$RICPLT_RELEASE_NAME
44 fi
45
46 # Namespace configuration
47 if [ -z "$RICPLT_NAMESPACE" ];then
48    PLT_NAMESPACE=$plt_namespace
49 else
50    PLT_NAMESPACE=$RICPLT_NAMESPACE
51 fi
52
53
54
55 RICPLT_COMPONENTS="e2sim"
56
57 echo "Deploying RIC Platform components [$RICPLT_COMPONENTS]"
58 echo "Platform Namespace: $PLT_NAMESPACE"
59 echo "Helm Release Name: $RELEASE_NAME"
60
61
62 COMMON_CHART_VERSION=$(cat $BASEDIRCOMMON/Chart.yaml | grep version | awk '{print $2}')
63
64 helm package -d /tmp $BASEDIRCOMMON
65
66
67 for component in $RICPLT_COMPONENTS; do
68   echo "Preparing chart for comonent $component"
69   mkdir -p $DIR/$component/charts/
70   cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/$component/charts/
71   if [ -z $OVERRIDEYAML ]; then
72   echo "helm install --namespace \"${PLT_NAMESPACE}\" --set \"Release.HelmReleaseName=${RELEASE_NAME}\" --name \"${RELEASE_NAME}-$component\" $DIR/../helm/$component"
73   helm install --namespace "${PLT_NAMESPACE}" --set "Release.HelmReleaseName=${RELEASE_NAME}"  --name "${RELEASE_NAME}-$component" $DIR/$component
74   else
75   echo "helm install -f $OVERRIDEYAML --namespace \"${PLT_NAMESPACE}\" --set \"Release.HelmReleaseName=${RELEASE_NAME}\"  --name \"${RELEASE_NAME}-$component\" $DIR/../helm/$component"
76   helm install -f $OVERRIDEYAML --namespace "${PLT_NAMESPACE}" --set "Release.HelmReleaseName=${RELEASE_NAME}"  --name "${RELEASE_NAME}-$component" $DIR/$component
77   fi
78 done