[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / sdnc / resources / config / bin / startODL.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # SDNC
6 # ================================================================================
7 # Copyright © 2020 Samsung Electronics
8 # Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13 #
14 #      http://www.apache.org/licenses/LICENSE-2.0
15 #
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 # ============LICENSE_END=========================================================
22 ###
23
24 # Append features to karaf boot feature configuration
25 # $1 additional feature to be added
26 # $2 repositories to be added (optional)
27 function addToFeatureBoot() {
28   CFG=$ODL_HOME/etc/org.apache.karaf.features.cfg
29   ORIG=$CFG.orig
30   if [ -n "$2" ] ; then
31     echo "Add repository: $2"
32     mv $CFG $ORIG
33     cat $ORIG | sed -e "\|featuresRepositories|s|$|,$2|" > $CFG
34   fi
35   echo "Add boot feature: $1"
36   mv $CFG $ORIG
37   cat $ORIG | sed -e "\|featuresBoot *=|s|$|,$1|" > $CFG
38 }
39
40 # Append features to karaf boot feature configuration
41 # $1 search pattern
42 # $2 replacement
43 function replaceFeatureBoot() {
44   CFG=$ODL_HOME/etc/org.apache.karaf.features.cfg
45   ORIG=$CFG.orig
46   echo "Replace boot feature $1 with: $2"
47   sed -i "/featuresBoot/ s/$1/$2/g" $CFG
48 }
49
50 function install_sdnrwt_features() {
51   addToFeatureBoot "$SDNRWT_BOOTFEATURES" $SDNRWT_REPOSITORY
52 }
53
54 function enable_odl_cluster(){
55   if [ -z $SDNC_REPLICAS ]; then
56      echo "SDNC_REPLICAS is not configured in Env field"
57      exit
58   fi
59
60   #Be sure to remove feature odl-netconf-connector-all from list
61   replaceFeatureBoot "odl-netconf-connector-all,"
62
63   echo "Installing Opendaylight cluster features"
64   replaceFeatureBoot odl-netconf-topology odl-netconf-clustered-topology
65   replaceFeatureBoot odl-mdsal-all odl-mdsal-all,odl-mdsal-clustering
66   addToFeatureBoot odl-jolokia
67   #${ODL_HOME}/bin/client feature:install odl-mdsal-clustering
68   #${ODL_HOME}/bin/client feature:install odl-jolokia
69
70
71   echo "Update cluster information statically"
72   hm=$(hostname)
73   echo "Get current Hostname ${hm}"
74
75   node=($(echo ${hm} | sed 's/-[0-9]*$//g'))
76   node_index=($(echo ${hm} | awk -F"-" '{print $NF}'))
77   member_offset=1
78
79   if $GEO_ENABLED; then
80     echo "This is a Geo cluster"
81
82     if [ -z $IS_PRIMARY_CLUSTER ] || [ -z $MY_ODL_CLUSTER ] || [ -z $PEER_ODL_CLUSTER ]; then
83      echo "IS_PRIMARY_CLUSTER, MY_ODL_CLUSTER and PEER_ODL_CLUSTER must all be configured in Env field"
84      return
85     fi
86
87     if $IS_PRIMARY_CLUSTER; then
88        PRIMARY_NODE=${MY_ODL_CLUSTER}
89        SECONDARY_NODE=${PEER_ODL_CLUSTER}
90     else
91        PRIMARY_NODE=${PEER_ODL_CLUSTER}
92        SECONDARY_NODE=${MY_ODL_CLUSTER}
93        member_offset=4
94     fi
95
96     node_list="${PRIMARY_NODE} ${SECONDARY_NODE}"
97
98     /opt/onap/sdnc/bin/configure_geo_cluster.sh $((node_index+member_offset)) ${node_list}
99   else
100     echo "This is a local cluster"
101
102     node_list="${node}-0.{{.Values.service.name}}-cluster.{{.Release.Namespace}}";
103
104     for ((i=1;i<${SDNC_REPLICAS};i++));
105     do
106       node_list="${node_list} ${node}-$i.{{.Values.service.name}}-cluster.{{.Release.Namespace}}"
107     done
108
109     /opt/opendaylight/current/bin/configure_cluster.sh $((node_index+1)) ${node_list}
110   fi
111 }
112
113
114 # Install SDN-C platform components if not already installed and start container
115
116 ODL_HOME=${ODL_HOME:-/opt/opendaylight/current}
117 ODL_ADMIN_USERNAME=${ODL_ADMIN_USERNAME}
118 ODL_ADMIN_PASSWORD=${ODL_ADMIN_PASSWORD}
119 SDNC_HOME=${SDNC_HOME:-/opt/onap/sdnc}
120 SDNC_BIN=${SDNC_BIN:-/opt/onap/sdnc/bin}
121 CCSDK_HOME=${CCSDK_HOME:-/opt/onap/ccsdk}
122 ENABLE_ODL_CLUSTER=${ENABLE_ODL_CLUSTER:-false}
123 GEO_ENABLED=${GEO_ENABLED:-false}
124 SDNC_AAF_ENABLED=${SDNC_AAF_ENABLED:-false}
125 SDNRWT=${SDNRWT:-false}
126 SDNRWT_BOOTFEATURES=${SDNRWT_BOOTFEATURES:-sdnr-wt-feature-aggregator}
127 export ODL_ADMIN_PASSWORD ODL_ADMIN_USERNAME
128
129 echo "Settings:"
130 echo "  ENABLE_ODL_CLUSTER=$ENABLE_ODL_CLUSTER"
131 echo "  SDNC_REPLICAS=$SDNC_REPLICAS"
132 echo "  SDNRWT=$SDNRWT"
133 echo "  AAF_ENABLED=$SDNC_AAF_ENABLED"
134
135
136 if $SDNC_AAF_ENABLED; then
137         export SDNC_AAF_STORE_DIR=/opt/app/osaaf/local
138         export SDNC_AAF_CONFIG_DIR=/opt/app/osaaf/local
139         export SDNC_KEYPASS=`cat /opt/app/osaaf/local/.pass`
140         export SDNC_KEYSTORE=org.onap.sdnc.p12
141         sed -i '/cadi_prop_files/d' $ODL_HOME/etc/system.properties
142         echo "cadi_prop_files=$SDNC_AAF_CONFIG_DIR/org.onap.sdnc.props" >> $ODL_HOME/etc/system.properties
143
144         sed -i '/org.ops4j.pax.web.ssl.keystore/d' $ODL_HOME/etc/custom.properties
145         sed -i '/org.ops4j.pax.web.ssl.password/d' $ODL_HOME/etc/custom.properties
146         sed -i '/org.ops4j.pax.web.ssl.keypassword/d' $ODL_HOME/etc/custom.properties
147         echo org.ops4j.pax.web.ssl.keystore=$SDNC_AAF_STORE_DIR/$SDNC_KEYSTORE >> $ODL_HOME/etc/custom.properties
148         echo org.ops4j.pax.web.ssl.password=$SDNC_KEYPASS >> $ODL_HOME/etc/custom.properties
149         echo org.ops4j.pax.web.ssl.keypassword=$SDNC_KEYPASS >> $ODL_HOME/etc/custom.properties
150 fi
151
152 if [ ! -f ${SDNC_HOME}/.installed ]
153 then
154         echo "Installing SDN-C keyStore"
155         ${SDNC_HOME}/bin/addSdncKeyStore.sh
156
157         if $ENABLE_ODL_CLUSTER ; then enable_odl_cluster ; fi
158
159         if $SDNRWT ; then install_sdnrwt_features ; fi
160
161         echo "Installed at `date`" > ${SDNC_HOME}/.installed
162 fi
163
164 cp /opt/opendaylight/current/certs/* /tmp
165 cp /var/custom-certs/* /tmp
166
167 nohup python ${SDNC_BIN}/installCerts.py &
168
169
170 exec ${ODL_HOME}/bin/karaf server