[es] Add support for Swarm Mode with proper transport publish computation

This commit is contained in:
Geoff Bourne
2016-09-04 15:25:04 -05:00
parent e570ac8715
commit 8cea619c13
2 changed files with 18 additions and 0 deletions
+6
View File
@@ -18,6 +18,12 @@ OPTS="$OPTS -Des.path.conf=/conf \
-Des.transport.tcp.port=9300 \
-Des.http.port=9200"
if [ "$DISCOVER_TRANSPORT_IP" != "" ]; then
ip=`ipaddr show dev $DISCOVER_TRANSPORT_IP scope global|awk '$1 == "inet" { if (!match($2,"/32")) { gsub("/.*","",$2) ; print $2 } }'`
echo "Discovered address $ip for $DISCOVER_TRANSPORT_IP"
OPTS="$OPTS -Des.transport.host=$ip"
fi
if [ -n "$CLUSTER" ]; then
OPTS="$OPTS -Des.cluster.name=$CLUSTER"
if [ -n "$CLUSTER_FROM" ]; then