blob: 5f5f811fd0d1073128097a1b83359a1e88587089 [file] [log] [blame]
jmac065e2ce2018-03-29 01:18:02 +00001#!/bin/bash
2
3###
4# ============LICENSE_START=======================================================
5# SDNC
6# ================================================================================
7# Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
8# ================================================================================
9# Licensed under the Apache License, Version 2.0 (the "License");
10# you may not use this file except in compliance with the License.
11# You may obtain a copy of the License at
12#
13# http://www.apache.org/licenses/LICENSE-2.0
14#
15# Unless required by applicable law or agreed to in writing, software
16# distributed under the License is distributed on an "AS IS" BASIS,
17# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18# See the License for the specific language governing permissions and
19# limitations under the License.
20# ============LICENSE_END=========================================================
21###
22
Herbert Eiselt746fa022019-04-05 20:01:01 +020023# Append features to karaf boot feature configuration
24# $1 additional feature to be added
25# $2 repositories to be added (optional)
26function addToFeatureBoot() {
27 CFG=$ODL_HOME/etc/org.apache.karaf.features.cfg
28 ORIG=$CFG.orig
29 if [ -n "$2" ] ; then
30 echo "Add repository: $2"
31 mv $CFG $ORIG
32 cat $ORIG | sed -e "\|featuresRepositories|s|$|,$2|" > $CFG
33 fi
34 echo "Add boot feature: $1"
35 mv $CFG $ORIG
36 cat $ORIG | sed -e "\|featuresBoot *=|s|$|,$1|" > $CFG
37}
38
39# Append features to karaf boot feature configuration
40# $1 search pattern
41# $2 replacement
42function replaceFeatureBoot() {
43 CFG=$ODL_HOME/etc/org.apache.karaf.features.cfg
44 ORIG=$CFG.orig
45 echo "Replace boot feature $1 with: $2"
46 sed -i "/featuresBoot/ s/$1/$2/g" $CFG
47}
48
49function install_sdnrwt_features() {
50 addToFeatureBoot "$SDNRWT_BOOTFEATURES" $SDNRWT_REPOSITORY
51}
52
jmac065e2ce2018-03-29 01:18:02 +000053function enable_odl_cluster(){
54 if [ -z $SDNC_REPLICAS ]; then
55 echo "SDNC_REPLICAS is not configured in Env field"
56 exit
57 fi
58
Herbert Eiselt746fa022019-04-05 20:01:01 +020059 #Be sure to remove feature odl-netconf-connector-all from list
60 replaceFeatureBoot "odl-netconf-connector-all,"
61
jmac065e2ce2018-03-29 01:18:02 +000062 echo "Installing Opendaylight cluster features"
Herbert Eiselt746fa022019-04-05 20:01:01 +020063 replaceFeatureBoot odl-netconf-topology odl-netconf-clustered-topology
64 replaceFeatureBoot odl-mdsal-all odl-mdsal-all,odl-mdsal-clustering
65 addToFeatureBoot odl-jolokia
Timoney, Dan (dt5972)1bb05c82018-07-24 10:10:08 -040066 #${ODL_HOME}/bin/client feature:install odl-mdsal-clustering
67 #${ODL_HOME}/bin/client feature:install odl-jolokia
Herbert Eiselt746fa022019-04-05 20:01:01 +020068
jmac065e2ce2018-03-29 01:18:02 +000069
70 echo "Update cluster information statically"
71 hm=$(hostname)
72 echo "Get current Hostname ${hm}"
73
Trevor Tait702d1052018-04-20 11:21:09 -040074 node=($(echo ${hm} | sed 's/-[0-9]*$//g'))
75 node_index=($(echo ${hm} | awk -F"-" '{print $NF}'))
76 member_offset=1
jmac065e2ce2018-03-29 01:18:02 +000077
Trevor Tait567ff1e2018-05-01 16:20:54 -040078 if $GEO_ENABLED; then
jmacc21cb7d2018-04-16 19:54:54 +000079 echo "This is a Geo cluster"
80
Trevor Tait567ff1e2018-05-01 16:20:54 -040081 if [ -z $IS_PRIMARY_CLUSTER ] || [ -z $MY_ODL_CLUSTER ] || [ -z $PEER_ODL_CLUSTER ]; then
82 echo "IS_PRIMARY_CLUSTER, MY_ODL_CLUSTER and PEER_ODL_CLUSTER must all be configured in Env field"
83 return
84 fi
85
jmacc21cb7d2018-04-16 19:54:54 +000086 if $IS_PRIMARY_CLUSTER; then
87 PRIMARY_NODE=${MY_ODL_CLUSTER}
88 SECONDARY_NODE=${PEER_ODL_CLUSTER}
89 else
90 PRIMARY_NODE=${PEER_ODL_CLUSTER}
91 SECONDARY_NODE=${MY_ODL_CLUSTER}
92 member_offset=4
93 fi
94
95 node_list="${PRIMARY_NODE} ${SECONDARY_NODE}"
Trevor Tait567ff1e2018-05-01 16:20:54 -040096
jmacc21cb7d2018-04-16 19:54:54 +000097 /opt/onap/sdnc/bin/configure_geo_cluster.sh $((node_index+member_offset)) ${node_list}
Trevor Tait567ff1e2018-05-01 16:20:54 -040098 else
99 echo "This is a local cluster"
100
101 node_list="${node}-0.{{.Values.service.name}}-cluster.{{.Release.Namespace}}";
102
103 for ((i=1;i<${SDNC_REPLICAS};i++));
104 do
105 node_list="${node_list} ${node}-$i.{{.Values.service.name}}-cluster.{{.Release.Namespace}}"
106 done
107
108 /opt/opendaylight/current/bin/configure_cluster.sh $((node_index+1)) ${node_list}
jmacc21cb7d2018-04-16 19:54:54 +0000109 fi
jmac065e2ce2018-03-29 01:18:02 +0000110}
111
jmacc21cb7d2018-04-16 19:54:54 +0000112
113# Install SDN-C platform components if not already installed and start container
114
jmac065e2ce2018-03-29 01:18:02 +0000115ODL_HOME=${ODL_HOME:-/opt/opendaylight/current}
DarraghEgan78531bf2019-05-20 13:24:29 +0000116ODL_ADMIN_USERNAME=${ODL_ADMIN_USERNAME:-admin}
jmac065e2ce2018-03-29 01:18:02 +0000117ODL_ADMIN_PASSWORD=${ODL_ADMIN_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
118SDNC_HOME=${SDNC_HOME:-/opt/onap/sdnc}
DarraghEgandbb5b682019-03-25 18:04:31 +0000119SDNC_BIN=${SDNC_BIN:-/opt/onap/sdnc/bin}
Trevor Tait702d1052018-04-20 11:21:09 -0400120CCSDK_HOME=${CCSDK_HOME:-/opt/onap/ccsdk}
Trevor Tait567ff1e2018-05-01 16:20:54 -0400121ENABLE_ODL_CLUSTER=${ENABLE_ODL_CLUSTER:-false}
122GEO_ENABLED=${GEO_ENABLED:-false}
Agarwal, Ruchira (ra1926)ec7c75e2019-10-01 17:36:24 +0000123SDNC_AAF_ENABLED=${SDNC_AAF_ENABLED:-false}
Herbert Eiselt746fa022019-04-05 20:01:01 +0200124SDNRWT=${SDNRWT:-false}
125SDNRWT_BOOTFEATURES=${SDNRWT_BOOTFEATURES:-sdnr-wt-feature-aggregator}
DarraghEgan78531bf2019-05-20 13:24:29 +0000126export ODL_ADMIN_PASSWORD ODL_ADMIN_USERNAME
Herbert Eiselt746fa022019-04-05 20:01:01 +0200127
128echo "Settings:"
129echo " ENABLE_ODL_CLUSTER=$ENABLE_ODL_CLUSTER"
130echo " SDNC_REPLICAS=$SDNC_REPLICAS"
131echo " SDNRWT=$SDNRWT"
Agarwal, Ruchira (ra1926)ec7c75e2019-10-01 17:36:24 +0000132echo " AAF_ENABLED=$SDNC_AAF_ENABLED"
jmac065e2ce2018-03-29 01:18:02 +0000133
jmac065e2ce2018-03-29 01:18:02 +0000134
Agarwal, Ruchira (ra1926)ec7c75e2019-10-01 17:36:24 +0000135if $SDNC_AAF_ENABLED; then
136 export SDNC_STORE_DIR=/opt/app/osaaf/local
137 export SDNC_CONFIG_DIR=/opt/app/osaaf/local
138 export SDNC_KEYPASS=`cat /opt/app/osaaf/local/.pass`
139 export SDNC_KEYSTORE=org.onap.sdnc.p12
140 sed -i '/cadi_prop_files/d' $ODL_HOME/etc/system.properties
141 echo "cadi_prop_files=$SDNC_CONFIG_DIR/org.onap.sdnc.props" >> $ODL_HOME/etc/system.properties
142
143 sed -i '/org.ops4j.pax.web.ssl.keystore/d' $ODL_HOME/etc/custom.properties
144 sed -i '/org.ops4j.pax.web.ssl.password/d' $ODL_HOME/etc/custom.properties
145 sed -i '/org.ops4j.pax.web.ssl.keypassword/d' $ODL_HOME/etc/custom.properties
146 echo org.ops4j.pax.web.ssl.keystore=$SDNC_STORE_DIR/$SDNC_KEYSTORE >> $ODL_HOME/etc/custom.properties
147 echo org.ops4j.pax.web.ssl.password=$SDNC_KEYPASS >> $ODL_HOME/etc/custom.properties
148 echo org.ops4j.pax.web.ssl.keypassword=$SDNC_KEYPASS >> $ODL_HOME/etc/custom.properties
149fi
jmac065e2ce2018-03-29 01:18:02 +0000150
Timoney, Dan (dt5972)eaa6a242018-11-16 17:08:12 -0500151if [ ! -f ${SDNC_HOME}/.installed ]
152then
153 echo "Installing SDN-C keyStore"
154 ${SDNC_HOME}/bin/addSdncKeyStore.sh
155
Timoney, Dan (dt5972)eaa6a242018-11-16 17:08:12 -0500156 if $ENABLE_ODL_CLUSTER ; then enable_odl_cluster ; fi
157
Herbert Eiselt746fa022019-04-05 20:01:01 +0200158 if $SDNRWT ; then install_sdnrwt_features ; fi
159
Timoney, Dan (dt5972)eaa6a242018-11-16 17:08:12 -0500160 echo "Installed at `date`" > ${SDNC_HOME}/.installed
jmac065e2ce2018-03-29 01:18:02 +0000161fi
162
DarraghEgandbb5b682019-03-25 18:04:31 +0000163cp /opt/opendaylight/current/certs/* /tmp
164
165nohup python ${SDNC_BIN}/installCerts.py &
166
167
jmacdbbe9372018-07-30 20:18:44 +0000168exec ${ODL_HOME}/bin/karaf server
jmac065e2ce2018-03-29 01:18:02 +0000169