Create host key
[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 CCSDK_HOME=${CCSDK_HOME:-/opt/onap/ccsdk}
75 SLEEP_TIME=${SLEEP_TIME:-120}
76 MYSQL_PASSWD=${MYSQL_PASSWD:-openECOMP1.0}
77 ENABLE_ODL_CLUSTER=${ENABLE_ODL_CLUSTER:-false}
78 IS_PRIMARY_CLUSTER=${IS_PRIMARY_CLUSTER:-false}
79 MY_ODL_CLUSTER=${MY_ODL_CLUSTER:-127.0.0.1}
80
81 #
82 # Wait for database
83 #
84 echo "Waiting for mysql"
85 until mysql -h dbhost -u root -p${MYSQL_PASSWD} mysql &> /dev/null
86 do
87   printf "."
88   sleep 1
89 done
90 echo -e "\nmysql ready"
91
92 if [ ! -f ${SDNC_HOME}/.installed ]
93 then
94         echo "Installing SDN-C database"
95         ${SDNC_HOME}/bin/installSdncDb.sh
96         echo "Installing SDN-C keyStore"
97         ${SDNC_HOME}/bin/addSdncKeyStore.sh
98         echo "Starting OpenDaylight"
99         ${CCSDK_HOME}/bin/installOdlHostKey.sh
100         ${ODL_HOME}/bin/start
101         echo "Waiting ${SLEEP_TIME} seconds for OpenDaylight to initialize"
102         sleep ${SLEEP_TIME}
103         echo "Installing SDN-C platform features"
104         ${SDNC_HOME}/bin/installFeatures.sh
105         if [ -x ${SDNC_HOME}/svclogic/bin/install.sh ]
106         then
107                 echo "Installing directed graphs"
108                 ${SDNC_HOME}/svclogic/bin/install.sh
109         fi
110
111         if $ENABLE_ODL_CLUSTER ; then enable_odl_cluster ; fi
112
113         echo "Restarting OpenDaylight"
114         ${ODL_HOME}/bin/stop
115         echo "Waiting 60 seconds for OpenDaylight stop to complete"
116     sleep 60
117         echo "Installed at `date`" > ${SDNC_HOME}/.installed
118 fi
119
120 exec ${ODL_HOME}/bin/karaf