2 ################################################################################
3 # Copyright (c) 2023 Nordix Foundation. #
4 # Copyright (C) 2023-2024 OpenInfra Foundation Europe. All rights reserved. #
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 ################################################################################
19 # This script deploys NonRtRic components automatically
23 if [ "$#" -eq 1 ]; then
27 while [ -n "$1" ]; do # while loop starts
34 *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
44 if [ -z "$OVERRIDEYAML" ];then
45 echo "****************************************************************************************************************"
47 echo "****************************************************************************************************************"
48 echo "RIC deployment without deployment recipe is currently disabled. Please specify an recipe with the -f option."
49 echo "****************************************************************************************************************"
54 ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
57 rm $ROOT_DIR/../nonrtric/helm/*/charts/*.tgz
59 #ChartMuseum configuration
61 CM_BASE_URL="http://127.0.0.1:$CM_PORT"
62 CM_CHART_GET_URL="$CM_BASE_URL/charts"
63 CM_CHART_POST_URL="$CM_BASE_URL/charts/api/charts"
66 IS_HELM3=$(helm version -c --short|grep -e "^v3")
68 if ! command -v chartmuseum &> /dev/null
71 echo "Installing ChartMuseum binary..."
72 wget https://get.helm.sh/chartmuseum-v0.13.1-linux-amd64.tar.gz
73 tar xvfz chartmuseum-v0.13.1-linux-amd64.tar.gz
74 sudo mv /tmp/linux-amd64/chartmuseum /usr/local/bin/chartmuseum
77 echo "ChartMuseum is already installed."
80 # Package common templates and serve it using Helm local repo
81 HELM_LOCAL_REPO="./chartstorage"
84 #Start Chart Museum server if there isn't one
85 CHART_MUSEUM_PID=$(lsof -i :"$CM_PORT" | grep "chartmus" | grep -v "grep" | awk '{print $2}')
86 if [ -z "$CHART_MUSEUM_PID" ]; then
87 echo "Starting ChartMuseum on port $CM_PORT..."
88 nohup chartmuseum --port=$CM_PORT --storage="local" --context-path=/charts --storage-local-rootdir=$HELM_LOCAL_REPO >/dev/null 2>&1 &
90 echo "ChartMuseum is already running..."
93 # Check if ChartMuseum is ready to serve request
94 command="curl --silent --output /dev/null $CM_BASE_URL"
96 do $command && s=0 && break || s=$? && echo "Failed to establish a connection with the ChartMuseum server. Retrying after 5s" && sleep 5;
101 echo "Cmd to test ChartMuseum failed with ($s): $command"
105 helm repo remove local
106 helm repo add local $CM_CHART_GET_URL
108 echo -e "\nPackaging NONRTRIC common [nonrtric-common]"
109 NONRTRIC_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common/Chart.yaml | grep version | awk '{print $2}')
110 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common
111 curl --data-binary @/tmp/nonrtric-common-$NONRTRIC_COMMON_CHART_VERSION.tgz $CM_CHART_POST_URL
113 COMPONENTS="controlpanel a1controller a1simulator policymanagementservice informationservice rappcatalogueservice rappcatalogueenhancedservice nonrtricgateway dmaapadapterservice dmaapmediatorservice helmmanager orufhrecovery ransliceassurance capifcore rappmanager dmeparticipant"
114 for component in $COMPONENTS; do
115 echo "Packaging NONRTRIC component [$component]"
116 helm dep up $ROOT_DIR/../nonrtric/helm/$component
117 VERSION=$(cat $ROOT_DIR/../nonrtric/helm/$component/Chart.yaml | grep version | awk '{print $2}')
118 helm package -d /tmp $ROOT_DIR/../nonrtric/helm/$component
119 curl --data-binary @/tmp/$component-$VERSION.tgz $CM_CHART_POST_URL
122 helm dep up $ROOT_DIR/../nonrtric/helm/nonrtric
124 helm repo index ${HELM_LOCAL_REPO}
126 # Make sure that helm local repo is added
127 helm repo add local $CM_CHART_GET_URL --force-update
129 echo "Finished Packaging NONRTRIC components [$COMPONENTS]"
132 COMMON_BLOCK=$(cat $OVERRIDEYAML | awk '/^common:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
133 NAMESPACE_BLOCK=$(cat $OVERRIDEYAML | awk '/^ namespace:/{getline; while ($0 ~ /^ .*|^ *$/) {print $0; if (getline == 0) {break}}}')
134 NONRTRIC_NAMESPACE=$(echo "$NAMESPACE_BLOCK" | awk '/^ *nonrtric:/{print $2}')
135 RELEASE_PREFIX=$(echo "$COMMON_BLOCK" | awk '/^ *releasePrefix:/{print $2}')
136 INSTALL_KONG=$(cat $OVERRIDEYAML | awk '/^ installKong:/{print $2}')
137 INSTALL_RANPM=$(cat $OVERRIDEYAML | awk '/^ installRanpm:/{print $2}')
139 if ! kubectl get ns ${NONRTRIC_NAMESPACE:-nonrtric}> /dev/null 2>&1; then
140 kubectl create ns ${NONRTRIC_NAMESPACE:-nonrtric}
142 if ! kubectl get ns onap > /dev/null 2>&1; then
143 kubectl create ns onap
146 echo "Install Kong- $INSTALL_KONG"
148 if [ "$INSTALL_KONG" = true ];then
149 echo "Installing Kong"
150 helm repo add kong https://charts.konghq.com --force-update
152 helm install kong-nonrtric --namespace ${NONRTRIC_NAMESPACE:-nonrtric} kong/kong --set ingressController.installCRDs=false --set admin.enabled=true
155 kubectl create configmap -n ${NONRTRIC_NAMESPACE:-nonrtric} nonrtric-recipe --from-file=recipe=$OVERRIDEYAML
157 echo "Deploying NONRTRIC"
159 echo "Install Ranpm- $INSTALL_RANPM"
161 if [ "$INSTALL_RANPM" = true ];then
162 echo "Running install-ranpm.sh"
163 chmod +x ${ROOT_DIR}/../ranpm/install/install-ranpm.sh
164 ${ROOT_DIR}/../ranpm/install/install-ranpm.sh
165 echo "install-ranpm.sh completed"
169 if [ -z $IS_HELM3 ];then
170 HELM_NAME_OPT="--name"
173 echo "helm install -f $OVERRIDEYAML --namespace ${NONRTRIC_NAMESPACE:-nonrtric} ${HELM_NAME_OPT} ${RELEASE_PREFIX} $ROOT_DIR/../nonrtric/helm/nonrtric"
174 helm install -f $OVERRIDEYAML --namespace "${NONRTRIC_NAMESPACE:-nonrtric}" ${HELM_NAME_OPT} "${RELEASE_PREFIX}" "$ROOT_DIR/../nonrtric/helm/nonrtric"