Skip to content

v2.0.10

Compare
Choose a tag to compare
@yichengq yichengq released this 22 Apr 23:22

Changelog

  • [GH2549] proxy shuffles endpoints to avoid being stuck to one member
  • [GH2488, 2226] stop using resolved address to avoid TLS failure.
  • [GH2645] fix the bug that machine power-off might lead to corrupted wal.
  • [GH2665] fix the bug that etcdserver.Send does not print correct error log for messages to removed members
  • [GH2664] etcdctl backup tool uses new file layout
  • [GH2684] fix the bug that PUT request with prevExist=true and prevIndex/prevValue set is not parsed to CompareAndSwap
  • [GH2661] fix the bug that etcd failed to recovery from recoverable WALs.
  • [GH2721] improve etcdctl help doc by adding ‘extended’ to output format

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.10/etcd-v2.0.10-darwin-amd64.zip -o etcd-v2.0.10-darwin-amd64.zip
unzip etcd-v2.0.10-darwin-amd64.zip
cd etcd-v2.0.10-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.10/etcd-v2.0.10-linux-amd64.tar.gz -o etcd-v2.0.10-linux-amd64.tar.gz
tar xzvf etcd-v2.0.10-linux-amd64.tar.gz
cd etcd-v2.0.10-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /usr/share/ca-certificates/:/etc/ssl/certs quay.io/coreos/etcd:v2.0.10

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.10