From 67da960d108ee5f8404485a55fc45f6f73470dd2 Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Wed, 3 Jun 2015 19:54:03 -0600 Subject: [PATCH] chore(*): update etcdctl to v0.4.9 --- builder/rootfs/Dockerfile | 2 +- controller/Dockerfile | 2 +- database/Dockerfile | 2 +- registry/Dockerfile | 2 +- store/base/build.sh | 2 +- tests/fixtures/mock-store/build.sh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/builder/rootfs/Dockerfile b/builder/rootfs/Dockerfile index 787b29e921..39c1c01704 100644 --- a/builder/rootfs/Dockerfile +++ b/builder/rootfs/Dockerfile @@ -4,7 +4,7 @@ FROM alpine:3.1 RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/* # install etcdctl -RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \ +RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/get-deis/etcdctl-v0.4.9 \ && chmod +x /usr/local/bin/etcdctl # install confd diff --git a/controller/Dockerfile b/controller/Dockerfile index 8a798e7c8f..f73a439c0d 100644 --- a/controller/Dockerfile +++ b/controller/Dockerfile @@ -6,7 +6,7 @@ ENV DEBIAN_FRONTEND noninteractive RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/* # install etcdctl -RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \ +RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/get-deis/etcdctl-v0.4.9 \ && chmod +x /usr/local/bin/etcdctl # install confd diff --git a/database/Dockerfile b/database/Dockerfile index 660f1c16fe..d2a126f138 100644 --- a/database/Dockerfile +++ b/database/Dockerfile @@ -6,7 +6,7 @@ ENV DEBIAN_FRONTEND noninteractive RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/* # install etcdctl -RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \ +RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/get-deis/etcdctl-v0.4.9 \ && chmod +x /usr/local/bin/etcdctl # install confd diff --git a/registry/Dockerfile b/registry/Dockerfile index ae62eb4294..71fed1d80a 100644 --- a/registry/Dockerfile +++ b/registry/Dockerfile @@ -4,7 +4,7 @@ FROM alpine:3.1 RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/* # install etcdctl -RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \ +RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/get-deis/etcdctl-v0.4.9 \ && chmod +x /usr/local/bin/etcdctl # install confd diff --git a/store/base/build.sh b/store/base/build.sh index f4e982098d..0ee73f39e5 100755 --- a/store/base/build.sh +++ b/store/base/build.sh @@ -16,7 +16,7 @@ DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y curl net-tools sudo # install etcdctl -curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \ +curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/get-deis/etcdctl-v0.4.9 \ && chmod +x /usr/local/bin/etcdctl # install confd diff --git a/tests/fixtures/mock-store/build.sh b/tests/fixtures/mock-store/build.sh index 8571e25948..4430f7fe55 100755 --- a/tests/fixtures/mock-store/build.sh +++ b/tests/fixtures/mock-store/build.sh @@ -20,7 +20,7 @@ apk add --update-cache \ python-dev # install etcdctl -curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \ +curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/get-deis/etcdctl-v0.4.9 \ && chmod +x /usr/local/bin/etcdctl git clone https://github.com/jserver/mock-s3 /app/mock-s3 --depth 1