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 ################################################################################
19 # This script deploys RIC platform components automatically
21 if [ "$#" -eq 1 ]; then
25 while [ -n "$1" ]; do # while loop starts
32 *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
42 if [ -z "$OVERRIDEYAML" ];then
43 echo "****************************************************************************************************************"
45 echo "****************************************************************************************************************"
46 echo "RIC deployment without deployment recipe is currently disabled. Please specify an recipe with the -f option."
47 echo "****************************************************************************************************************"
53 ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
55 IS_HELM3=$(helm version -c --short|grep -e "^v3")
59 # Check for servcm plugin
60 helm plugin list | grep -q "^servecm"
63 helm plugin install https://github.com/jdolitsky/helm-servecm
67 # Start Helm local repo if there isn't one
68 HELM_REPO_PID=$(ps -x | grep "helm serve" | grep -v "grep" | awk '{print $1}')
69 if [ -z "$HELM_REPO_PID" ]; then
72 nohup helm serve >& /dev/null &
77 echo "Error: Please run the command with sudo as helm servecm needs to copy a file in location needing privilege"
80 eval $(helm env |grep HELM_REPOSITORY_CACHE)
81 echo yes > /tmp/ric-yes
82 nohup sudo sh -c "helm servecm --port=8879 --context-path=/charts --storage local --storage-local-rootdir $HELM_REPOSITORY_CACHE/local/ < /tmp/ric-yes " &
86 $ROOT_DIR/prepare-common-templates
88 $ROOT_DIR/../ric-dep/bin/install -f $OVERRIDEYAML