Merge pull request #1251 from philips/hack-insta-discovery

hack: introduce a insta-discovery script
release-2.0
Brandon Philips 2014-10-07 13:47:03 -07:00
commit 5b8c4f4e0d
5 changed files with 15 additions and 1 deletions

3
.gitignore vendored
View File

@ -4,6 +4,7 @@
/machine*
/bin
.vagrant
/*_etcd_data
*_etcd_data
etcd
*.swp
/hack/insta-discovery/.env

1
hack/README.md Normal file
View File

@ -0,0 +1 @@
Various hacks that are used by developers.

View File

@ -0,0 +1,4 @@
# Use goreman to run `go get github.com/mattn/goreman`
etcd1: ../../bin/etcd -name node1 -listen-client-urls http://127.0.0.1:4001 -advertise-client-urls http://127.0.0.1:4001 -listen-peer-urls http://127.0.0.1:7001 -advertise-peer-urls http://127.0.0.1:7001
etcd2: ../../bin/etcd -name node2 -listen-client-urls http://127.0.0.1:4002 -advertise-client-urls http://127.0.0.1:4002 -listen-peer-urls http://127.0.0.1:7002 -advertise-peer-urls http://127.0.0.1:7002
etcd3: ../../bin/etcd -name node3 -listen-client-urls http://127.0.0.1:4003 -advertise-client-urls http://127.0.0.1:4003 -listen-peer-urls http://127.0.0.1:7003 -advertise-peer-urls http://127.0.0.1:7003

View File

@ -0,0 +1 @@
Starts a cluster via the discovery service on your local machine. Useful for testing.

7
hack/insta-discovery/discovery Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
disc=$(curl https://discovery.etcd.io/new?size=3)
echo ETCD_DISCOVERY=${disc} > .env
echo "setup discovery start your cluster"
cat .env
goreman start