wrider | 1a8a09d | 2019-04-02 22:10:42 -0400 | [diff] [blame] | 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 | |
Zhe Huang | 7f1e409 | 2019-05-28 16:16:02 -0400 | [diff] [blame] | 19 | # This script deploys RIC platform components automatically |
wrider | 1a8a09d | 2019-04-02 22:10:42 -0400 | [diff] [blame] | 20 | |
Zhe Huang | 9c38147 | 2019-09-09 16:56:35 -0400 | [diff] [blame] | 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 | |
wrider | 1a8a09d | 2019-04-02 22:10:42 -0400 | [diff] [blame] | 41 | |
Zhe Huang | 7f1e409 | 2019-05-28 16:16:02 -0400 | [diff] [blame] | 42 | if [ -z "$OVERRIDEYAML" ];then |
Zhe Huang | 9c38147 | 2019-09-09 16:56:35 -0400 | [diff] [blame] | 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 |
Zhe Huang | 7f1e409 | 2019-05-28 16:16:02 -0400 | [diff] [blame] | 49 | fi |
| 50 | |
wrider | 1a8a09d | 2019-04-02 22:10:42 -0400 | [diff] [blame] | 51 | |
Zhe Huang | 9c38147 | 2019-09-09 16:56:35 -0400 | [diff] [blame] | 52 | |
Zhe Huang | 96f1edd | 2019-07-12 17:06:51 -0400 | [diff] [blame] | 53 | ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" |
Alok Bhatt | 2fcd391 | 2020-12-04 10:40:36 +0000 | [diff] [blame] | 54 | #Check for helm3 |
| 55 | IS_HELM3=$(helm version -c --short|grep -e "^v3") |
| 56 | |
| 57 | if [ $IS_HELM3 ] |
| 58 | then |
| 59 | # Check for servcm plugin |
| 60 | helm plugin list | grep -q "^servecm" |
| 61 | if [ $? -eq "1" ] |
| 62 | then |
| 63 | helm plugin install https://github.com/jdolitsky/helm-servecm |
| 64 | fi |
| 65 | fi |
Zhe Huang | 033ab42 | 2019-05-20 15:45:42 -0400 | [diff] [blame] | 66 | |
Zhe Huang | dc00cdf | 2020-02-10 13:45:15 -0500 | [diff] [blame] | 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 |
Alok Bhatt | 2fcd391 | 2020-12-04 10:40:36 +0000 | [diff] [blame] | 70 | if [ -z $IS_HELM3 ] |
| 71 | then |
| 72 | nohup helm serve >& /dev/null & |
| 73 | else |
| 74 | echo EUID:$EUID |
| 75 | if [ $EUID -ne "0" ] |
| 76 | then |
| 77 | echo "Error: Please run the command with sudo as helm servecm needs to copy a file in location needing privilege" |
| 78 | exit; |
| 79 | fi |
| 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 " & |
| 83 | fi |
Zhe Huang | dc00cdf | 2020-02-10 13:45:15 -0500 | [diff] [blame] | 84 | fi |
Zhe Huang | 96f1edd | 2019-07-12 17:06:51 -0400 | [diff] [blame] | 85 | |
Zhe Huang | 4d2d4f1 | 2020-04-23 15:13:30 -0400 | [diff] [blame] | 86 | $ROOT_DIR/prepare-common-templates |
Zhe Huang | dc00cdf | 2020-02-10 13:45:15 -0500 | [diff] [blame] | 87 | |
| 88 | $ROOT_DIR/../ric-dep/bin/install -f $OVERRIDEYAML |
| 89 | |
Zhe Huang | 7f1e409 | 2019-05-28 16:16:02 -0400 | [diff] [blame] | 90 | |
| 91 | |
| 92 | |