Bootstrap a Consul cluster in CoreOS
Inspired from
Since Consul brings interesting features (service catalog, DNS interface, watches) that etcd does not support, it is nice to have a Consul cluster too.
COREOS_PUBLIC_IPV4
variable definedgit clone git@github.com:vvanholl/consul4coreos.git
cd consul4coreos
./install.sh
Note that you can give options to ./install.sh, like --registrator
to also add Registrator service, or --join <node>
to join an existing cluster
git clone git@github.com:vvanholl/consul4coreos.git
cd consul4coreos
Open service file in your favorite editor
vi consul.service
and modify these lines :
Environment=DOCKER_REPOSITORY=gliderlabs/consul-server
Environment=DOCKER_CONTAINER=consul
Environment=CONSUL_DATACENTER=dc1
fleetctl submit consul.service
fleetctl start consul.service
fleetctl submit registrator.service
fleetctl start registrator.service