forked from portworx/kvdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PWX-23110: update etcd to 3.4.24 (portworx#114)
- use go modules instead of go dep - use go.etcd.io/etcd instead of github.com/coreos/etcd - update etcd to 3.4.24 both in the vendored code and in the test container
- Loading branch information
1 parent
36b33a4
commit 8766683
Showing
2,077 changed files
with
641,707 additions
and
687 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
.idea | ||
coverage.txt | ||
profile.out | ||
vendor | ||
zookeeper/zookeeper.out | ||
consul/kvdb_audit.log | ||
etcd/v2/kvdb_audit.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ MAINTAINER [email protected] | |
RUN \ | ||
apt-get update -yq && \ | ||
apt-get install -yq --no-install-recommends \ | ||
btrfs-tools \ | ||
gcc \ | ||
g++ \ | ||
ca-certificates && \ | ||
|
@@ -15,9 +14,9 @@ RUN apt-get update && \ | |
apt-get -y install unzip curl make git default-jre | ||
|
||
|
||
RUN curl -s -L https://dl.google.com/go/go1.10.7.linux-amd64.tar.gz | tar -C /usr/local/ -xz && \ | ||
curl -s -L https://github.com/coreos/etcd/releases/download/v3.2.15/etcd-v3.2.15-linux-amd64.tar.gz -o /tmp/etcd-v3.2.15-linux-amd64.tar.gz && \ | ||
mkdir -p /tmp/test-etcd && tar xzvf /tmp/etcd-v3.2.15-linux-amd64.tar.gz -C /tmp/test-etcd --strip-components=1 && cp /tmp/test-etcd/etcd /usr/local/bin && \ | ||
RUN curl -s -L https://dl.google.com/go/go1.17.13.linux-amd64.tar.gz | tar -C /usr/local/ -xz && \ | ||
curl -s -L https://github.com/etcd-io/etcd/releases/download/v3.4.24/etcd-v3.4.24-linux-amd64.tar.gz -o /tmp/etcd-v3.4.24-linux-amd64.tar.gz && \ | ||
mkdir -p /tmp/test-etcd && tar xzvf /tmp/etcd-v3.4.24-linux-amd64.tar.gz -C /tmp/test-etcd --strip-components=1 && cp /tmp/test-etcd/etcd /usr/local/bin && \ | ||
curl -s -L https://releases.hashicorp.com/consul/1.0.0/consul_1.0.0_linux_amd64.zip -o /tmp/consul.zip && \ | ||
mkdir -p /tmp/test-consul && unzip /tmp/consul.zip -d /tmp/test-consul && cp /tmp/test-consul/consul /usr/local/bin/ && \ | ||
curl -s -L https://archive.apache.org/dist/zookeeper/zookeeper-3.4.13/zookeeper-3.4.13.tar.gz -o /tmp/zookeeper-3.4.13.tar.gz && \ | ||
|
Oops, something went wrong.