|
|
@@ -5,7 +5,7 @@
|
|
|
|
|
|

|
|
|
|
|
|
-etcd is a distributed, consistent key value store for shared configuration and service discovery with a focus on being:
|
|
|
+etcd is a distributed, consistent key-value store for shared configuration and service discovery, with a focus on being:
|
|
|
|
|
|
* *Simple*: curl'able user facing API (HTTP+JSON)
|
|
|
* *Secure*: optional SSL client cert authentication
|
|
|
@@ -17,8 +17,6 @@ etcd is written in Go and uses the [Raft][raft] consensus algorithm to manage a
|
|
|
See [etcdctl][etcdctl] for a simple command line client.
|
|
|
Or feel free to just use curl, as in the examples below.
|
|
|
|
|
|
-[zookeeper]: http://zookeeper.apache.org/
|
|
|
-[doozer]: https://github.com/ha/doozerd
|
|
|
[raft]: http://raftconsensus.github.io/
|
|
|
[etcdctl]: https://github.com/coreos/etcd/tree/master/etcdctl
|
|
|
|
|
|
@@ -28,13 +26,14 @@ If you're considering etcd for production use, please see: [production-ready.md]
|
|
|
|
|
|
### Getting etcd
|
|
|
|
|
|
-The latest release and setup instructions are available at [GitHub][github-release].
|
|
|
+The easiest way to get etcd is to install one of the pre-built binaries from the tagged releases: instructions are available on [GitHub][github-release].
|
|
|
|
|
|
-You can build a latest etcd from master branch. All development occurs on the master branch which includes new features and bug fixes.
|
|
|
-
|
|
|
-Bug fixes should target the master branch and ported to the appropriate release branch as described in the [branch management](./Documentation/branch_management.md) guide.
|
|
|
+For those wanting to try the very latest version, you can build the latest version of etcd from the `master` branch.
|
|
|
+All development occurs on `master`, including new features and bug fixes.
|
|
|
+Bug fixes are first targeted at `master` and subsequently ported to release branches, as described in the [branch management][branch-management] guide.
|
|
|
|
|
|
[github-release]: https://github.com/coreos/etcd/releases/
|
|
|
+[branch-management]: ./Documentation/branch_management.md
|
|
|
|
|
|
### Running etcd
|
|
|
|