Skip to content

Commit b019551

Browse files
committed
1 parent fa89f93 commit b019551

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

initutils/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# same FROM as kafka-jre, to keep pull times down and to provide the same shell distro+version
22
FROM debian:stretch-slim@sha256:ea42520331a55094b90f6f6663211d4f5a62c5781673935fe17a4dfced777029
33

4-
ENV KUBERNETES_VERSION=1.8.5 KUBERNETES_CLIENTS_SHA256=c32b6f90f1e8a15451f0d412d6d1f3db28948d2f7d76d4e28d83c11e1eb25f20
4+
ENV KUBERNETES_VERSION=1.9.3 KUBERNETES_CLIENT_SHA256=2f509c05f0c4e1c1ac9e98879a1924f24546905349457904344d79dc639217be
55

66
RUN set -ex; \
77
export DEBIAN_FRONTEND=noninteractive; \
@@ -11,7 +11,7 @@ RUN set -ex; \
1111
rm -rf /var/lib/apt/lists/*; \
1212
\
1313
curl -sLS -o k.tar.gz -k https://dl.k8s.io/v${KUBERNETES_VERSION}/kubernetes-client-linux-amd64.tar.gz; \
14-
echo "$KUBERNETES_CLIENTS_SHA256 k.tar.gz" | sha256sum -c; \
14+
echo "$KUBERNETES_CLIENT_SHA256 k.tar.gz" | sha256sum -c; \
1515
tar -xvzf k.tar.gz -C /usr/local/bin/ --strip-components=3 kubernetes/client/bin/kubectl; \
1616
rm k.tar.gz; \
1717
\

0 commit comments

Comments
 (0)