Merge "[COMMON] Fix condition equality bashisms"
[oom.git] / kubernetes / appc / resources / config / appc / opt / onap / appc / bin / startODL.sh
1 #!/bin/bash -x
2 {{/*
3
4 ###
5 # ============LICENSE_START=======================================================
6 # APPC
7 # ================================================================================
8 # Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
9 # Modifications Copyright © 2018 Amdocs,Bell Canada
10 # ================================================================================
11 # Licensed under the Apache License, Version 2.0 (the "License");
12 # you may not use this file except in compliance with the License.
13 # You may obtain a copy of the License at
14 #
15 #      http://www.apache.org/licenses/LICENSE-2.0
16 #
17 # Unless required by applicable law or agreed to in writing, software
18 # distributed under the License is distributed on an "AS IS" BASIS,
19 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 # See the License for the specific language governing permissions and
21 # limitations under the License.
22 # ============LICENSE_END=========================================================
23 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
24 ###
25
26 #
27 # This script takes care of installing the SDNC & APPC platform components
28 #  if not already installed, and starts the APPC Docker Container
29 #
30 #set -x
31 */}}
32
33 enable_odl_cluster () {
34   if [ -z $APPC_REPLICAS ]; then
35      echo "APPC_REPLICAS is not configured in Env field"
36      exit
37   fi
38
39   echo "Update cluster information statically"
40   hm=$(hostname)
41   echo "Get current Hostname ${hm}"
42
43   node=($(echo ${hm} | sed 's/-[0-9]*$//g'))
44   node_index=($(echo ${hm} | awk -F"-" '{print $NF}'))
45   node_list="${node}-0.{{ .Values.service.name }}-cluster.{{.Release.Namespace}}";
46
47   for ((i=1;i<${APPC_REPLICAS};i++));
48   do
49     node_list="${node_list} ${node}-$i.{{ .Values.service.name }}-cluster.{{.Release.Namespace}}"
50   done
51
52   /opt/opendaylight/current/bin/configure_cluster.sh $((node_index+1)) ${node_list}
53 }
54
55 ODL_HOME=${ODL_HOME:-/opt/opendaylight/current}
56 SDNC_HOME=${SDNC_HOME:-/opt/onap/ccsdk}
57 APPC_HOME=${APPC_HOME:-/opt/onap/appc}
58 SLEEP_TIME=${SLEEP_TIME:-120}
59 MYSQL_PASSWD=${MYSQL_ROOT_PASSWORD}
60 ENABLE_ODL_CLUSTER=${ENABLE_ODL_CLUSTER:-false}
61 ENABLE_AAF=${ENABLE_AAF:-true}
62 DBINIT_DIR=${DBINIT_DIR:-/opt/opendaylight/current/daexim}
63
64 #
65 # Wait for database to init properly
66 #
67 echo "Waiting for mariadbgalera"
68 until mysql -h {{.Values.config.mariadbGaleraSVCName}}.{{.Release.Namespace}} -u root -p${MYSQL_PASSWD}  mysql &> /dev/null
69 do
70   printf "."
71   sleep 1
72 done
73 echo -e "\nmariadbgalera ready"
74
75 if [ ! -d ${DBINIT_DIR} ]
76 then
77     mkdir -p ${DBINIT_DIR}
78 fi
79
80 if [ ! -f ${DBINIT_DIR}/.installed ]
81 then
82         sdnc_db_exists=$(mysql -h {{.Values.config.mariadbGaleraSVCName}}.{{.Release.Namespace}} -u root -p${MYSQL_PASSWD} mysql <<-END
83 show databases like 'sdnctl';
84 END
85 )
86         if [ "x${sdnc_db_exists}" = "x" ]
87         then
88             echo "Installing SDNC database"
89             ${SDNC_HOME}/bin/installSdncDb.sh
90
91             appc_db_exists=$(mysql -h {{.Values.config.mariadbGaleraSVCName}}.{{.Release.Namespace}} -u root -p${MYSQL_PASSWD} mysql <<-END
92 show databases like 'appcctl';
93 END
94 )
95             if [ "x${appc_db_exists}" = "x" ]
96             then
97               echo "Installing APPC database"
98               ${APPC_HOME}/bin/installAppcDb.sh
99             fi
100         else
101             sleep 30
102         fi
103
104         echo "Installed at `date`" > ${DBINIT_DIR}/.installed
105 fi
106
107
108 if [ ! -f ${SDNC_HOME}/.installed ]
109 then
110         echo "Installing ODL Host Key"
111         ${SDNC_HOME}/bin/installOdlHostKey.sh
112
113 #        echo "Copying a working version of the logging configuration into the opendaylight etc folder"
114 #        cp ${APPC_HOME}/data/org.ops4j.pax.logging.cfg ${ODL_HOME}/etc/org.ops4j.pax.logging.cfg
115
116
117         echo "Waiting ${SLEEP_TIME} seconds for OpenDaylight to initialize"
118         sleep ${SLEEP_TIME}
119
120
121         if [ -x ${SDNC_HOME}/svclogic/bin/install.sh ]
122         then
123                 echo "Installing directed graphs"
124                 ${SDNC_HOME}/svclogic/bin/install.sh
125         fi
126
127         if [ -x ${APPC_HOME}/svclogic/bin/install-converted-dgs.sh ]
128         then
129                 echo "Installing APPC JSON DGs converted to XML using dg-loader"
130                 ${APPC_HOME}/svclogic/bin/install-converted-dgs.sh
131         fi
132
133         if $ENABLE_ODL_CLUSTER
134         then
135                 echo "Enabling Opendaylight cluster features"
136                 enable_odl_cluster
137         fi
138
139         echo "Copying the aaa shiro configuration into opendaylight"
140         mkdir -p ${ODL_HOME}/etc/opendaylight/datastore/initial/config
141         if $ENABLE_AAF
142         then
143              cp ${APPC_HOME}/data/properties/aaa-app-config.xml ${ODL_HOME}/etc/opendaylight/datastore/initial/config/aaa-app-config.xml
144         fi
145
146 fi
147
148 # Move journal and snapshots directory to persistent storage
149
150 hostdir=${ODL_HOME}/daexim/$(hostname -s)
151 if [ ! -d $hostdir ]
152 then
153     mkdir -p $hostdir
154     if [ -d ${ODL_HOME}/journal ]
155     then
156         mv ${ODL_HOME}/journal ${hostdir}
157     else
158         mkdir ${hostdir}/journal
159     fi
160     if [ -d ${ODL_HOME}/snapshots ]
161     then
162         mv ${ODL_HOME}/snapshots ${hostdir}
163     else
164         mkdir ${hostdir}/snapshots
165     fi
166 fi
167
168 ln -s ${hostdir}/journal ${ODL_HOME}/journal
169 ln -s ${hostdir}/snapshots ${ODL_HOME}/snapshots
170
171 echo "Starting cdt-proxy-service jar, logging to ${APPC_HOME}/cdt-proxy-service/jar.log"
172 java -jar ${APPC_HOME}/cdt-proxy-service/cdt-proxy-service.jar > ${APPC_HOME}/cdt-proxy-service/jar.log &
173
174 echo "Starting dmaap-event-service jar, logging to ${APPC_HOME}/dmaap-event-service/jar.log"
175 java -jar -Dorg_onap_appc_bootstrap_path=/opt/onap/appc/data/properties -Dorg_onap_appc_bootstrap_file=appc.properties ${APPC_HOME}/dmaap-event-service/dmaap-event-service.jar > ${APPC_HOME}/dmaap-event-service/jar.log &
176
177 echo "Adding a property system.properties for AAF cadi.properties location"
178 echo "" >> ${ODL_HOME}/etc/system.properties
179 echo "cadi_prop_files=${APPC_HOME}/data/properties/cadi.properties" >> ${ODL_HOME}/etc/system.properties
180 echo "" >> ${ODL_HOME}/etc/system.properties
181
182 echo "Adding a value to property appc.asdc.env in appc.properties for appc-asdc-listener feature"
183 echo "" >> $APPC_HOME/data/properties/appc.properties
184 echo "appc.asdc.env=$DMAAP_TOPIC_ENV" >> $APPC_HOME/data/properties/appc.properties
185 echo "" >> $APPC_HOME/data/properties/appc.properties
186
187 echo "Copying jetty, keystore for https into opendalight"
188 cp ${APPC_HOME}/data/jetty.xml ${ODL_HOME}/etc/jetty.xml
189 cp ${APPC_HOME}/data/keystore ${ODL_HOME}/etc/keystore
190 cp ${APPC_HOME}/data/custom.properties ${ODL_HOME}/etc/custom.properties
191
192 echo "Copying a working version of the logging configuration into the opendaylight etc folder"
193 cp ${APPC_HOME}/data/org.ops4j.pax.logging.cfg ${ODL_HOME}/etc/org.ops4j.pax.logging.cfg
194
195 ODL_BOOT_FEATURES_EXTRA="odl-netconf-connector,odl-restconf-noauth,odl-netconf-clustered-topology,odl-mdsal-clustering"
196 sed -i -e "\|featuresBoot[^a-zA-Z]|s|$|,${ODL_BOOT_FEATURES_EXTRA}|"  $ODL_HOME/etc/org.apache.karaf.features.cfg
197
198 exec ${APPC_HOME}/bin/dockerInstall.sh &
199 echo "Starting OpenDaylight"
200 exec ${ODL_HOME}/bin/karaf server