92b7b93b79dc5f7cf28d54c66048813f2280fd1d
[it/test.git] / ric_robot_suite / helm / robot_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 BASEDIR50=$BASE/dep/ric-platform/50-RIC-Platform/
32 BASEDIR_COMMON_TEMPLATE=$BASE/dep/ric-common/Common-Template/helm/ric-common
33
34 echo "Using etc/ric.conf from $BASEDIR50"
35
36 source $BASEDIR50/etc/ric.conf
37
38
39 if [ -z "$RICPLT_RELEASE_NAME" ];then
40    RELEASE_NAME=$helm_release_name
41 else
42    RELEASE_NAME=$RICPLT_RELEASE_NAME
43 fi
44
45 # Namespace configuration
46 if [ -z "$RICPLT_NAMESPACE" ];then
47    PLT_NAMESPACE=$plt_namespace
48 else
49    PLT_NAMESPACE=$RICPLT_NAMESPACE
50 fi
51
52 RICPLT_COMPONENTS="ric-robot"
53
54 echo "Deploying RIC Platform components [$RICPLT_COMPONENTS]"
55 echo "Platform Namespace: $PLT_NAMESPACE"
56 echo "Helm Release Name: $RELEASE_NAME"
57
58
59 COMMON_CHART_VERSION=$(cat $BASEDIR_COMMON_TEMPLATE/Chart.yaml | grep version | awk '{print $2}')
60
61 helm package -d /tmp $BASEDIR_COMMON_TEMPLATE
62
63
64 for component in $RICPLT_COMPONENTS; do
65   echo "Preparing chart for comonent $component"
66   mkdir -p $DIR/$component/charts/
67   cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/$component/charts/
68   if [ -z $OVERRIDEYAML ]; then
69   echo "helm install --namespace \"${PLT_NAMESPACE}\" --set \"Release.HelmReleaseName=${RELEASE_NAME}\" --name \"${RELEASE_NAME}-$component\" $DIR/../helm/$component"
70   helm install --namespace "${PLT_NAMESPACE}" --set "Release.HelmReleaseName=${RELEASE_NAME}"  --name "${RELEASE_NAME}-$component" $DIR/$component
71   else
72   echo "helm install -f $OVERRIDEYAML --namespace \"${PLT_NAMESPACE}\" --set \"Release.HelmReleaseName=${RELEASE_NAME}\"  --name \"${RELEASE_NAME}-$component\" $DIR/../helm/$component"
73   helm install -f $OVERRIDEYAML --namespace "${PLT_NAMESPACE}" --set "Release.HelmReleaseName=${RELEASE_NAME}"  --name "${RELEASE_NAME}-$component" $DIR/$component
74   fi
75 done
76