blob: f5ac79c03afa6f4f6bcf0720b9c0b3859b2146ba [file] [log] [blame]
#!/usr/bin/env bash
CONSUL_VER="0.7.5"
CONSUL_ZIP="consul_${CONSUL_VER}_linux_amd64.zip"
# cleanup
rm -rf "target/consul-data"
rm -rf "target/consul-config"
rm -rf "target/consul"
mkdir -p target/
mkdir -p target/consul-data
mkdir -p target/consul-config
if [ ! -f target/${CONSUL_ZIP} ]; then
wget "https://releases.hashicorp.com/consul/${CONSUL_VER}/${CONSUL_ZIP}" -O target/${CONSUL_ZIP}
fi
cat > target/consul-config/services.json <<EOF
{
"services": [{
"id": "s1i1", "name": "service-1", "tags": ["camel", "service-call"], "address": "localhost", "port": 9011
}, {
"id": "s1i2", "name": "service-1", "tags": ["camel", "service-call"], "address": "localhost", "port": 9012
}, {
"id": "s1i3", "name": "service-1", "tags": ["camel", "service-call"], "address": "localhost", "port": 9013
}, {
"id": "s1i4", "name": "service-1", "address": "localhost", "port": 9014
}, {
"id": "s2i1", "name": "service-2", "tags": ["camel", "service-call"], "address": "localhost", "port": 9021
}, {
"id": "s2i2", "name": "service-2", "tags": ["camel", "service-call"], "address": "localhost", "port": 9022
}, {
"id": "s2i3", "name": "service-2", "tags": ["camel", "service-call"], "address": "localhost", "port": 9023
}, {
"id": "s2i4", "name": "service-2", "address": "localhost", "port": 9024
}]
}
EOF
unzip -d target target/${CONSUL_ZIP}
target/consul \
agent \
-server \
-bootstrap \
-datacenter camel \
-advertise 127.0.0.1 \
-bind 0.0.0.0 \
-log-level trace \
-data-dir target/consul-data \
-config-dir target/consul-config