From 5ea0bf9a110faf77139d463ed95b7e0b35939948 Mon Sep 17 00:00:00 2001 From: "Vojtech Vitek (V-Teq)" Date: Wed, 17 Sep 2014 12:17:06 +0200 Subject: [PATCH] Update etcd installation steps in README --- README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2d2316af539..e9f22141113 100644 --- a/README.md +++ b/README.md @@ -153,15 +153,12 @@ godep go tool cover -html=target/c.out ### Integration tests -You need an etcd somewhere in your path. To get from head: - -*Important Note* etcd is currently broken at head. You need to build using the ```hack/install-etcd.sh``` script. +You need an etcd somewhere in your PATH. To install etcd, run: ``` -./hack/install-etcd.sh -sudo ln -s "third_party/bin/etcd" /usr/bin/etcd -# Or just use the packaged one: -sudo ln -s "$REPO_ROOT/target/bin/etcd" /usr/bin/etcd +cd kubernetes +hack/install-etcd.sh +sudo ln -s $(pwd)/third_party/etcd/bin/etcd /usr/bin/etcd ``` ```