1d2f837b7470d9a6c0e0d48410e76ca4709fa413
[it/dep.git] / bin / deploy-ric-platform
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 # This script deploys RIC platform components automatically
20
21 if [ "$#" -eq 1 ]; then
22     OVERRIDEYAML=$1
23 else
24
25     while [ -n "$1" ]; do # while loop starts
26
27         case "$1" in
28
29         -f) OVERRIDEYAML=$2
30             shift
31             ;;
32         *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
33
34         esac
35
36         shift
37
38     done
39 fi
40
41
42 if [ -z "$OVERRIDEYAML" ];then
43     echo "****************************************************************************************************************"
44     echo "                                                     ERROR                                                      "
45     echo "****************************************************************************************************************"
46     echo "RIC deployment without deployment recipe is currently disabled. Please specify an recipe with the -f option."
47     echo "****************************************************************************************************************"
48     exit 1
49 fi
50
51
52
53 ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
54
55 # Start Helm local repo if there isn't one
56 HELM_REPO_PID=$(ps -x | grep  "helm serve" | grep -v "grep" | awk '{print $1}')
57 if [ -z "$HELM_REPO_PID" ]; then
58     nohup helm serve >& /dev/null &
59 fi
60
61 # Package ric-common and serve it using Helm local repo
62 HELM_HOME=$(helm home)
63 COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
64 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/ric-common
65 cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
66 helm repo index $HELM_HOME/repository/local/
67
68
69 # Make sure that helm local repo is added
70 helm repo remove local
71 helm repo add local http://127.0.0.1:8879/charts
72
73
74
75 $ROOT_DIR/../ric-dep/bin/install -f $OVERRIDEYAML
76
77
78
79