Update etcd installation steps in README

This commit is contained in:
Vojtech Vitek (V-Teq) 2014-09-17 12:17:06 +02:00
parent ac8ee45f4f
commit 5ea0bf9a11

View File

@ -153,15 +153,12 @@ godep go tool cover -html=target/c.out
### Integration tests ### Integration tests
You need an etcd somewhere in your path. To get from head: You need an etcd somewhere in your PATH. To install etcd, run:
*Important Note* etcd is currently broken at head. You need to build using the ```hack/install-etcd.sh``` script.
``` ```
./hack/install-etcd.sh cd kubernetes
sudo ln -s "third_party/bin/etcd" /usr/bin/etcd hack/install-etcd.sh
# Or just use the packaged one: sudo ln -s $(pwd)/third_party/etcd/bin/etcd /usr/bin/etcd
sudo ln -s "$REPO_ROOT/target/bin/etcd" /usr/bin/etcd
``` ```
``` ```