2 ################################################################################
3 # Copyright (c) 2020 Nordix Foundation. #
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 #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
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 ################################################################################
18 IS_HELM3=$(helm version -c --short|grep -e "^v3")
19 while [ -n "$1" ]; do # while loop starts
26 *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
35 if [ -z "$OVERRIDEYAML" ];then
36 echo "****************************************************************************************************************"
38 echo "****************************************************************************************************************"
39 echo "RIC deployment without deployment recipe is currently disabled. Please specify an recipe with the -f option."
40 echo "****************************************************************************************************************"
45 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
47 COMMON_BLOCK=$(cat $OVERRIDEYAML | awk '/^common:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
48 NAMESPACE_BLOCK=$(cat $OVERRIDEYAML | awk '/^ namespace:/{getline; while ($0 ~ /^ .*|^ *$/) {print $0; if (getline == 0) {break}}}')
49 NONRTRIC_NAMESPACE=$(echo "$NAMESPACE_BLOCK" | awk '/^ *nonrtric:/{print $2}')
50 RELEASE_PREFIX=$(echo "$COMMON_BLOCK" | awk '/^ *releasePrefix:/{print $2}')
51 PARENT_CHART=$(cat $OVERRIDEYAML | awk '/^ *component:/{print $2}')
52 echo "Chart name- $PARENT_CHART"
54 if ! kubectl get ns ${NONRTRIC_NAMESPACE:-nonrtric}> /dev/null 2>&1; then
55 kubectl create ns ${NONRTRIC_NAMESPACE:-nonrtric}
57 if ! kubectl get ns onap > /dev/null 2>&1; then
58 kubectl create ns onap
61 kubectl create configmap -n ${NONRTRIC_NAMESPACE:-nonrtric} nonrtric-recipe --from-file=recipe=$OVERRIDEYAML
63 echo "Deploying NONRTRIC [$PARENT_CHART]"
66 if [ -z $IS_HELM3 ];then
67 HELM_NAME_OPT="--name"
70 echo "helm install -f $OVERRIDEYAML --namespace ${NONRTRIC_NAMESPACE:-nonrtric} ${HELM_NAME_OPT} ${RELEASE_PREFIX} $DIR/../helm/${PARENT_CHART}"
71 helm install -f $OVERRIDEYAML --namespace "${NONRTRIC_NAMESPACE:-nonrtric}" ${HELM_NAME_OPT} "${RELEASE_PREFIX}" $DIR/../helm/"${PARENT_CHART}"