Merge "Revert "Install odl-mdsal-trace in netvirt oxygen csit""
[releng/builder.git] / jjb / integration / integration-configure-clustering.sh
1 #@IgnoreInspection BashAddShebang
2 # Activate robotframework virtualenv
3 # ${ROBOT_VENV} comes from the integration-install-robotframework.sh
4 # script.
5 # shellcheck source=${ROBOT_VENV}/bin/activate disable=SC1091
6 source ${ROBOT_VENV}/bin/activate
7 source /tmp/common-functions.sh ${BUNDLEFOLDER}
8
9 echo "#################################################"
10 echo "##         Configure Cluster and Start         ##"
11 echo "#################################################"
12
13 if [ ${CONTROLLERSCOPE} == 'all' ]; then
14     ACTUALFEATURES="odl-integration-compatible-with-all,${CONTROLLERFEATURES}"
15     export CONTROLLERMEM="3072m"
16 else
17     ACTUALFEATURES="odl-infrautils-ready,${CONTROLLERFEATURES}"
18 fi
19 # Some versions of jenkins job builder result in feature list containing spaces
20 # and ending in newline. Remove all that.
21 ACTUALFEATURES=`echo "${ACTUALFEATURES}" | tr -d '\n \r'`
22
23 # Utility function for joining strings.
24 function join {
25     delim=' '
26     final=$1; shift
27
28     for str in "$@" ; do
29         final=${final}${delim}${str}
30     done
31
32     echo ${final}
33 }
34
35 # Create the string for nodes
36 for i in `seq 1 ${NUM_ODL_SYSTEM}` ; do
37     CONTROLLERIP=ODL_SYSTEM_${i}_IP
38     nodes[$i]=${!CONTROLLERIP}
39 done
40
41 nodes_list=$(join "${nodes[@]}")
42
43 echo ${nodes_list}
44
45 # Run script plan in case it exists
46 if [ -f ${WORKSPACE}/test/csit/scriptplans/${TESTPLAN} ]; then
47     echo "scriptplan exists!!!"
48     echo "Reading the scriptplan:"
49     cat ${WORKSPACE}/test/csit/scriptplans/${TESTPLAN} | sed "s:integration:${WORKSPACE}:" > scriptplan.txt
50     cat scriptplan.txt
51     for line in $( egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' scriptplan.txt ); do
52         echo "Executing ${line}..."
53         source ${line}
54     done
55 fi
56
57 # Create the configuration script to be run on controllers.
58 cat > ${WORKSPACE}/configuration-script.sh <<EOF
59 set -x
60 source /tmp/common-functions.sh ${BUNDLEFOLDER}
61
62 echo "Changing to /tmp"
63 cd /tmp
64
65 echo "Downloading the distribution from ${ACTUAL_BUNDLE_URL}"
66 wget --progress=dot:mega  '${ACTUAL_BUNDLE_URL}'
67
68 echo "Extracting the new controller..."
69 unzip -q ${BUNDLE}
70
71 echo "Adding external repositories..."
72 sed -ie "s%org.ops4j.pax.url.mvn.repositories=%org.ops4j.pax.url.mvn.repositories=http://repo1.maven.org/maven2@id=central, http://repository.springsource.com/maven/bundles/release@id=spring.ebr.release, http://repository.springsource.com/maven/bundles/external@id=spring.ebr.external, http://zodiac.springsource.com/maven/bundles/release@id=gemini, http://repository.apache.org/content/groups/snapshots-group@id=apache@snapshots@noreleases, https://oss.sonatype.org/content/repositories/snapshots@id=sonatype.snapshots.deploy@snapshots@noreleases, https://oss.sonatype.org/content/repositories/ops4j-snapshots@id=ops4j.sonatype.snapshots.deploy@snapshots@noreleases%g" ${MAVENCONF}
73 cat ${MAVENCONF}
74
75 echo "Configuring the startup features..."
76 sed -ie "s/\(featuresBoot=\|featuresBoot =\)/featuresBoot = ${ACTUALFEATURES},/g" ${FEATURESCONF}
77
78 FEATURE_TEST_STRING="features-integration-test"
79 if [[ "$KARAF_VERSION" == "karaf4" ]]; then
80     FEATURE_TEST_STRING="features-test"
81 fi
82
83 sed -ie "s%\(featuresRepositories=\|featuresRepositories =\)%featuresRepositories = mvn:org.opendaylight.integration/\${FEATURE_TEST_STRING}/${BUNDLEVERSION}/xml/features,mvn:org.apache.karaf.decanter/apache-karaf-decanter/1.0.0/xml/features,%g" ${FEATURESCONF}
84 cat ${FEATURESCONF}
85
86 if [ "${ODL_ENABLE_L3_FWD}" == "yes" ]; then
87   echo "Enable the l3.fwd in custom.properties.."
88   echo "ovsdb.l3.fwd.enabled=yes" >> ${CUSTOMPROP}
89   cat ${CUSTOMPROP}
90 fi
91
92 configure_karaf_log "${KARAF_VERSION}" "${CONTROLLERDEBUGMAP}"
93
94 set_java_vars "${JAVA_HOME}" "${CONTROLLERMEM}" "${MEMCONF}"
95
96 # Copy shard file if exists
97 if [ -f /tmp/custom_shard_config.txt ]; then
98     echo "Custom shard config exists!!!"
99     echo "Copying the shard config..."
100     cp /tmp/custom_shard_config.txt /tmp/${BUNDLEFOLDER}/bin/
101 fi
102
103 echo "Configuring cluster"
104 /tmp/${BUNDLEFOLDER}/bin/configure_cluster.sh \$1 ${nodes_list}
105
106 echo "Dump akka.conf"
107 cat ${AKKACONF}
108
109 echo "Dump modules.conf"
110 cat ${MODULESCONF}
111
112 echo "Dump module-shards.conf"
113 cat ${MODULESHARDSCONF}
114
115 EOF
116
117 # Create the startup script to be run on controllers.
118 cat > ${WORKSPACE}/startup-script.sh <<EOF
119
120 echo "Redirecting karaf console output to karaf_console.log"
121 export KARAF_REDIRECT="/tmp/${BUNDLEFOLDER}/data/log/karaf_console.log"
122 mkdir -p /tmp/${BUNDLEFOLDER}/data/log
123
124 echo "Starting controller..."
125 /tmp/${BUNDLEFOLDER}/bin/start
126
127 EOF
128
129 # Copy over the configuration script and configuration files to each controller
130 # Execute the configuration script on each controller.
131 for i in `seq 1 ${NUM_ODL_SYSTEM}`
132 do
133     CONTROLLERIP=ODL_SYSTEM_${i}_IP
134     echo "Configuring member-${i} with IP address ${!CONTROLLERIP}"
135     scp ${WORKSPACE}/configuration-script.sh ${!CONTROLLERIP}:/tmp/
136     ssh ${!CONTROLLERIP} "bash /tmp/configuration-script.sh ${i}"
137 done
138
139 # Run config plan in case it exists
140 configplan_filepath="${WORKSPACE}/test/csit/configplans/${STREAMTESTPLAN}"
141 if [ ! -f "${configplan_filepath}" ]; then
142     configplan_filepath="${WORKSPACE}/test/csit/configplans/${TESTPLAN}"
143 fi
144
145 if [ -f ${configplan_filepath} ]; then
146     echo "configplan exists!!!"
147     echo "Reading the configplan:"
148     cat ${configplan_filepath} | sed "s:integration:${WORKSPACE}:" > configplan.txt
149     cat configplan.txt
150     for line in $( egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' configplan.txt ); do
151         echo "Executing ${line}..."
152         source ${line}
153     done
154 fi
155
156 # Copy over the startup script to each controller and execute it.
157 for i in `seq 1 ${NUM_ODL_SYSTEM}`
158 do
159     CONTROLLERIP=ODL_SYSTEM_${i}_IP
160     echo "Starting member-${i} with IP address ${!CONTROLLERIP}"
161     scp ${WORKSPACE}/startup-script.sh ${!CONTROLLERIP}:/tmp/
162     ssh ${!CONTROLLERIP} "bash /tmp/startup-script.sh"
163 done
164
165 # vim: ts=4 sw=4 sts=4 et ft=sh :