Add sleep after stop
[sdnc/oam.git] / installation / sdnc / src / main / scripts / startODL.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # openECOMP : SDN-C
6 # ================================================================================
7 # Copyright (C) 2017 AT&T Intellectual Property. All rights
8 #                                                       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 function enable_odl_cluster(){
25   if [ -z $SDNC_REPLICAS ]; then
26      echo "SDNC_REPLICAS is not configured in Env field"
27      exit
28   fi
29
30   echo "Installing Opendaylight cluster features"
31   ${ODL_HOME}/bin/client feature:install odl-mdsal-clustering
32   ${ODL_HOME}/bin/client feature:install odl-jolokia
33
34   echo "Update cluster information statically"
35   hm=$(hostname)
36   echo "Get current Hostname ${hm}"
37
38   node=($(echo ${hm} | tr '-' '\n'))
39   node_name=${node[0]}
40   node_index=${node[1]}
41
42   if [ -z $PEER_ODL_CLUSTER ]; then
43     echo "This is a local cluster"
44     node_list="${node_name}-0.sdnhost-cluster.onap.svc.cluster.local";
45
46     for ((i=1;i<${SDNC_REPLICAS};i++));
47     do
48       node_list="${node_list} ${node_name}-$i.sdnhost-cluster.onap.svc.cluster.local"
49     done
50     /opt/opendaylight/current/bin/configure_cluster.sh $((node_index+1)) ${node_list}
51   else
52     echo "This is a Geo cluster"
53
54     if $IS_PRIMARY_CLUSTER; then
55        PRIMARY_NODE=${MY_ODL_CLUSTER}
56        SECONDARY_NODE=${PEER_ODL_CLUSTER}
57     else
58        PRIMARY_NODE=${PEER_ODL_CLUSTER}
59        SECONDARY_NODE=${MY_ODL_CLUSTER}
60        member_offset=4
61     fi
62
63     node_list="${PRIMARY_NODE} ${SECONDARY_NODE}"
64     /opt/onap/sdnc/bin/configure_geo_cluster.sh $((node_index+member_offset)) ${node_list}
65   fi
66 }
67
68
69 # Install SDN-C platform components if not already installed and start container
70
71 ODL_HOME=${ODL_HOME:-/opt/opendaylight/current}
72 ODL_ADMIN_PASSWORD=${ODL_ADMIN_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
73 SDNC_HOME=${SDNC_HOME:-/opt/onap/sdnc}
74 SLEEP_TIME=${SLEEP_TIME:-120}
75 MYSQL_PASSWD=${MYSQL_PASSWD:-openECOMP1.0}
76 ENABLE_ODL_CLUSTER=${ENABLE_ODL_CLUSTER:-false}
77 IS_PRIMARY_CLUSTER=${IS_PRIMARY_CLUSTER:-false}
78 MY_ODL_CLUSTER=${MY_ODL_CLUSTER:-127.0.0.1}
79
80 #
81 # Wait for database
82 #
83 echo "Waiting for mysql"
84 until mysql -h dbhost -u root -p${MYSQL_PASSWD} mysql &> /dev/null
85 do
86   printf "."
87   sleep 1
88 done
89 echo -e "\nmysql ready"
90
91 if [ ! -f ${SDNC_HOME}/.installed ]
92 then
93         echo "Installing SDN-C database"
94         ${SDNC_HOME}/bin/installSdncDb.sh
95         echo "Installing SDN-C keyStore"
96         ${SDNC_HOME}/bin/addSdncKeyStore.sh
97         echo "Starting OpenDaylight"
98         ${ODL_HOME}/bin/start
99         echo "Waiting ${SLEEP_TIME} seconds for OpenDaylight to initialize"
100         sleep ${SLEEP_TIME}
101         echo "Installing SDN-C platform features"
102         ${SDNC_HOME}/bin/installFeatures.sh
103         if [ -x ${SDNC_HOME}/svclogic/bin/install.sh ]
104         then
105                 echo "Installing directed graphs"
106                 ${SDNC_HOME}/svclogic/bin/install.sh
107         fi
108
109         if $ENABLE_ODL_CLUSTER ; then enable_odl_cluster ; fi
110
111         echo "Restarting OpenDaylight"
112         ${ODL_HOME}/bin/stop
113         echo "Waiting 60 seconds for OpenDaylight stop to complete"
114     sleep 60
115         echo "Installed at `date`" > ${SDNC_HOME}/.installed
116 fi
117
118 exec ${ODL_HOME}/bin/karaf