2 ################################################################################
3 # Copyright (c) 2019 AT&T Intellectual Property. #
4 # Copyright (c) 2019 Nokia. #
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 #
10 # http://www.apache.org/licenses/LICENSE-2.0 #
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 ################################################################################
23 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
25 #/root/test/ric_robot_suite/helm
26 # extract the base to find root to dep
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
34 echo "Using etc/ric.conf from $BASEDIR05"
37 source $BASEDIR05/etc/ric.conf
40 if [ -z "$RICPLT_RELEASE_NAME" ];then
41 RELEASE_NAME=$helm_release_name
43 RELEASE_NAME=$RICPLT_RELEASE_NAME
46 # Namespace configuration
47 if [ -z "$RICPLT_NAMESPACE" ];then
48 PLT_NAMESPACE=$plt_namespace
50 PLT_NAMESPACE=$RICPLT_NAMESPACE
55 RICPLT_COMPONENTS="e2sim"
57 echo "Deploying RIC Platform components [$RICPLT_COMPONENTS]"
58 echo "Platform Namespace: $PLT_NAMESPACE"
59 echo "Helm Release Name: $RELEASE_NAME"
62 COMMON_CHART_VERSION=$(cat $BASEDIRCOMMON/Chart.yaml | grep version | awk '{print $2}')
64 helm package -d /tmp $BASEDIRCOMMON
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
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