Skip to content

v2.0.3

Compare
Choose a tag to compare
@yichengq yichengq released this 18 Feb 18:21

Changelog

  • Fix static building of etcd binary
  • Fix the bug of removing user data under /_etcd in migration
  • Fix the bug of saving snapshot panic
  • Fix the bug of recovering transport wrongly
  • Fix the bug of skipping cluster check in discovery bootstrap
  • Add support for graceful shutdown when receives SIGINT and SIGTERM

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.3/etcd-v2.0.3-darwin-amd64.zip -o etcd-v2.0.3-darwin-amd64.zip
unzip etcd-v2.0.3-darwin-amd64.zip
cd etcd-v2.0.3-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.3/etcd-v2.0.3-linux-amd64.tar.gz -o etcd-v2.0.3-linux-amd64.tar.gz
tar xzvf etcd-v2.0.3-linux-amd64.tar.gz
cd etcd-v2.0.3-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.3

ACI/Rocket

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

rkt run coreos.com/etcd:v2.0.3