Merge "Add helm chart for NONRTRIC rAPP Catalogue"
[it/dep.git] / bin / deploy-nonrtric
1 #!/bin/bash
2 ################################################################################
3 #   Copyright (c) 2020 Nordix Foundation.                                      #
4 #                                                                              #
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                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
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 ################################################################################
17
18 # This script deploys NonRtRic components automatically
19
20 if [ "$#" -eq 1 ]; then
21     OVERRIDEYAML=$1
22 else
23
24     while [ -n "$1" ]; do # while loop starts
25
26         case "$1" in
27
28         -f) OVERRIDEYAML=$2
29             shift
30             ;;
31         *) echo "Option $1 not recognized" ;; # In case you typed a different option other than a,b,c
32
33         esac
34
35         shift
36
37     done
38 fi
39
40
41 if [ -z "$OVERRIDEYAML" ];then
42     echo "****************************************************************************************************************"
43     echo "                                                     ERROR                                                      "
44     echo "****************************************************************************************************************"
45     echo "RIC deployment without deployment recipe is currently disabled. Please specify an recipe with the -f option."
46     echo "****************************************************************************************************************"
47     exit 1
48 fi
49
50
51 ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
52
53 #Check for helm3
54 IS_HELM3=$(helm version -c --short|grep -e "^v3")
55
56 if [ $IS_HELM3 ]
57 then
58   # Check for servcm plugin
59   helm plugin list | grep -q "^servecm"
60   if [ $? -eq "1" ]
61   then
62     helm plugin install https://github.com/jdolitsky/helm-servecm
63   fi
64 fi
65
66 # Start Helm local repo if there isn't one
67 HELM_REPO_PID=$(ps -x | grep  "helm serve" | grep -v "grep" | awk '{print $1}')
68 if [ -z "$HELM_REPO_PID" ]; then
69     if [ -z $IS_HELM3 ]
70     then
71       nohup helm serve >& /dev/null &
72     else
73       echo EUID:$EUID
74       if [ $EUID -ne "0" ]
75          then
76            echo "Error: Please run the command with sudo as helm servecm needs to copy a file in location needing privilege"
77            exit;
78          fi
79       eval $(helm env |grep HELM_REPOSITORY_CACHE)
80       echo yes > /tmp/ric-yes
81       nohup sudo sh -c "helm servecm --port=8879 --context-path=/charts  --storage local --storage-local-rootdir $HELM_REPOSITORY_CACHE/local/  < /tmp/ric-yes " &
82     fi
83 fi
84
85
86 $ROOT_DIR/prepare-common-templates
87
88 COMPONENTS=${LIST_OF_COMPONENTS:-"controlpanel a1controller a1simulator policymanagementservice enrichmentservice rappcatalogueservice"}
89 echo "Packaging NONRTRIC components [$COMPONENTS]"
90 # Package common templates and serve it using Helm local repo
91 HELM_LOCAL_REPO=""
92 if [ $IS_HELM3 ]
93 then
94   eval $(helm env |grep HELM_REPOSITORY_CACHE)
95   HELM_LOCAL_REPO="${HELM_REPOSITORY_CACHE}/local/"
96 else
97   HELM_HOME=$(helm home)
98   HELM_LOCAL_REPO="${HELM_HOME}/repository/local/"
99 fi
100
101 for component in $COMPONENTS; do
102     helm dep up $ROOT_DIR/../nonrtric/helm/$component
103     VERSION=$(cat $ROOT_DIR/../nonrtric/helm/$component/Chart.yaml | grep version | awk '{print $2}')
104     helm package -d /tmp $ROOT_DIR/../nonrtric/helm/$component
105     cp /tmp/$component-$VERSION.tgz ${HELM_LOCAL_REPO}
106 done
107
108 helm repo index ${HELM_LOCAL_REPO}
109
110 # Make sure that helm local repo is added
111 helm repo remove local
112 helm repo add local http://127.0.0.1:8879/charts
113
114 echo "Finished Packaging NONRTRIC components [$COMPONENTS]"
115
116 $ROOT_DIR/../nonrtric/bin/install -f $OVERRIDEYAML