All Versions
43
Latest Version
Avg Release Cycle
37 days
Latest Release
1242 days ago

Changelog History
Page 2

  • v3.4.1 Changes

    September 17, 2019

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🐧 ###### Linux

    ETCD\_VER=v3.4.1# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcd/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.4.1# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.4.1 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.4.1 \ gcr.io/etcd-development/etcd:v3.4.1 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap \ --log-outputs stderr docker exec etcd-gcr-v3.4.1 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.4.1 /bin/sh -c "/usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.4.1 /bin/sh -c "/usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.4.1 /bin/sh -c "/usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.4.1 /bin/sh -c "/usr/local/bin/etcdctl get foo"
    
  • v3.4.0 Changes

    August 30, 2019

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🐧 ###### Linux

    ETCD\_VER=v3.4.0# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcd/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.4.0# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.4.0 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.4.0 \ gcr.io/etcd-development/etcd:v3.4.0 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap \ --log-outputs stderr docker exec etcd-gcr-v3.4.0 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.4.0 /bin/sh -c "/usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.4.0 /bin/sh -c "/usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.4.0 /bin/sh -c "/usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.4.0 /bin/sh -c "/usr/local/bin/etcdctl get foo"
    
  • v3.4.0-rc.4 Changes

    August 29, 2019

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🚀 Release signing key can be found at coreos.com/security/app-signing-key.

    🐧 ###### Linux

    ETCD\_VER=v3.4.0-rc.4# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcd/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.4.0-rc.4# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.4.0-rc.4 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.4.0-rc.4 \ gcr.io/etcd-development/etcd:v3.4.0-rc.4 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap docker exec etcd-gcr-v3.4.0-rc.4 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.4.0-rc.4 /bin/sh -c "/usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.4.0-rc.4 /bin/sh -c "/usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.4.0-rc.4 /bin/sh -c "/usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.4.0-rc.4 /bin/sh -c "/usr/local/bin/etcdctl get foo"
    
  • v3.4.0-rc.3 Changes

    August 27, 2019

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🚀 Release signing key can be found at coreos.com/security/app-signing-key.

    🐧 ###### Linux

    ETCD\_VER=v3.4.0-rc.3# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcd/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.4.0-rc.3# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.4.0-rc.3 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.4.0-rc.3 \ gcr.io/etcd-development/etcd:v3.4.0-rc.3 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap docker exec etcd-gcr-v3.4.0-rc.3 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.4.0-rc.3 /bin/sh -c "/usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.4.0-rc.3 /bin/sh -c "/usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.4.0-rc.3 /bin/sh -c "/usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.4.0-rc.3 /bin/sh -c "/usr/local/bin/etcdctl get foo"
    
  • v3.4.0-rc.2 Changes

    August 23, 2019

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🚀 Release signing key can be found at coreos.com/security/app-signing-key.

    🐧 ###### Linux

    ETCD\_VER=v3.4.0-rc.2# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcd/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.4.0-rc.2# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.4.0-rc.2 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.4.0-rc.2 \ gcr.io/etcd-development/etcd:v3.4.0-rc.2 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap docker exec etcd-gcr-v3.4.0-rc.2 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.4.0-rc.2 /bin/sh -c "/usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.4.0-rc.2 /bin/sh -c "/usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.4.0-rc.2 /bin/sh -c "/usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.4.0-rc.2 /bin/sh -c "/usr/local/bin/etcdctl get foo"
    
  • v3.4.0-rc.1 Changes

    August 15, 2019

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🚀 Release signing key can be found at coreos.com/security/app-signing-key.

    🐧 ###### Linux

    ETCD\_VER=v3.4.0-rc.1# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcd/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.4.0-rc.1# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.4.0-rc.1 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.4.0-rc.1 \ gcr.io/etcd-development/etcd:v3.4.0-rc.1 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap docker exec etcd-gcr-v3.4.0-rc.1 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.4.0-rc.1 /bin/sh -c "/usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.4.0-rc.1 /bin/sh -c "/usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.4.0-rc.1 /bin/sh -c "/usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.4.0-rc.1 /bin/sh -c "/usr/local/bin/etcdctl get foo"
    
  • v3.4.0-rc.0 Changes

    August 12, 2019

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🚀 Release signing key can be found at coreos.com/security/app-signing-key.

    🐧 ###### Linux

    ETCD\_VER=v3.4.0-rc.0# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcd/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.4.0-rc.0# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.4.0-rc.0 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.4.0-rc.0 \ gcr.io/etcd-development/etcd:v3.4.0-rc.0 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap docker exec etcd-gcr-v3.4.0-rc.0 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.4.0-rc.0 /bin/sh -c "/usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.4.0-rc.0 /bin/sh -c "/usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.4.0-rc.0 /bin/sh -c "/usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.4.0-rc.0 /bin/sh -c "/usr/local/bin/etcdctl get foo"
    
  • v3.3.25 Changes

    August 24, 2020

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🐧 ###### Linux

    ETCD\_VER=v3.3.25# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version ETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcdETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar ETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.3.25# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version ETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.3.25 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.3.25 \ gcr.io/etcd-development/etcd:v3.3.25 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap \ --log-outputs stderr docker exec etcd-gcr-v3.3.25 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.3.25 /bin/sh -c "ETCDCTL\_API=3 /usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.3.25 /bin/sh -c "ETCDCTL\_API=3 /usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.3.25 /bin/sh -c "ETCDCTL\_API=3 /usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.3.25 /bin/sh -c "ETCDCTL\_API=3 /usr/local/bin/etcdctl get foo"
    
  • v3.3.24 Changes

    August 18, 2020

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🐧 ###### Linux

    ETCD\_VER=v3.3.24# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version ETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcd/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar ETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.3.24# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version ETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.3.24 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.3.24 \ gcr.io/etcd-development/etcd:v3.3.24 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new docker exec etcd-gcr-v3.3.24 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.3.24 /bin/sh -c "ETCDCTL\_API=3 /usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.3.24 /bin/sh -c "ETCDCTL\_API=3 /usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.3.24 /bin/sh -c "ETCDCTL\_API=3 /usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.3.24 /bin/sh -c "ETCDCTL\_API=3 /usr/local/bin/etcdctl get foo"
    
  • v3.3.23 Changes

    July 16, 2020

    Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

    📚 For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

    🐧 ###### Linux

    ETCD\_VER=v3.3.23# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz tar xzvf /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 rm -f /tmp/etcd-${ETCD\_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version ETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl version
    
    # start a local etcd server/tmp/etcd-download-test/etcd# write,read to etcdETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar ETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
    

    🍎 ###### macOS (Darwin)

    ETCD\_VER=v3.3.23# choose either URLGOOGLE\_URL=https://storage.googleapis.com/etcd GITHUB\_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD\_URL=${GOOGLE\_URL}rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test curl -L ${DOWNLOAD\_URL}/${ETCD\_VER}/etcd-${ETCD\_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip unzip /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD\_VER}-darwin-amd64.zip mv /tmp/etcd-${ETCD\_VER}-darwin-amd64/\* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD\_VER}-darwin-amd64 /tmp/etcd-download-test/etcd --version ETCDCTL\_API=3 /tmp/etcd-download-test/etcdctl version
    

    🐳 ###### Docker

    etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

    rm -rf /tmp/etcd-data.tmp && mkdir -p -m700 /tmp/etcd-data.tmp && \ docker rmi gcr.io/etcd-development/etcd:v3.3.23 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ --name etcd-gcr-v3.3.23 \ gcr.io/etcd-development/etcd:v3.3.23 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new \ --log-level info \ --logger zap \ --log-outputs stderr docker exec etcd-gcr-v3.3.23 /bin/sh -c "/usr/local/bin/etcd --version"docker exec etcd-gcr-v3.3.23 /bin/sh -c "/usr/local/bin/etcdctl version"docker exec etcd-gcr-v3.3.23 /bin/sh -c "/usr/local/bin/etcdctl endpoint health"docker exec etcd-gcr-v3.3.23 /bin/sh -c "/usr/local/bin/etcdctl put foo bar"docker exec etcd-gcr-v3.3.23 /bin/sh -c "/usr/local/bin/etcdctl get foo"