Skip to content

Commit 8ed749c

Browse files
Upgrade kubectl from v1.18.0 to v1.18.2, upgrade k9s from v0.19.0 to v0.19.2.
1 parent 4ef7744 commit 8ed749c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ USER root
1818
ARG ARCH=amd64
1919

2020
RUN rm -f /bin/sh && ln -s /bin/bash /bin/sh
21-
ENV KUBECTL_VERSION v1.18.0
21+
ENV KUBECTL_VERSION v1.18.2
2222
COPY --from=gotty-build /gotty /usr/bin/
2323
RUN apt-get update && \
2424
apt-get install -y --no-install-recommends curl ca-certificates jq iproute2 less bash-completion unzip sysstat acl net-tools iputils-ping telnet dnsutils wget vim git && \
2525
curl -sLf https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/${ARCH}/kubectl > /usr/bin/kubectl && chmod +x /usr/bin/kubectl && \
2626
git clone --branch v0.8.0 https://github.com/ahmetb/kubectx /opt/kubectx && chmod -R 755 /opt/kubectx && ln -s /opt/kubectx/kubectx /usr/local/bin/kubectx && ln -s /opt/kubectx/kubens /usr/local/bin/kubens && \
2727
git clone --branch master --depth 1 https://github.com/ahmetb/kubectl-aliases /opt/kubectl-aliases && chmod -R 755 /opt/kubectl-aliases && \
2828
git clone --branch 0.21.0 --depth 1 https://github.com/junegunn/fzf /opt/fzf && chmod -R 755 /opt/fzf && /opt/fzf/install && ln -s /opt/fzf/bin/fzf /usr/local/bin/fzf && \
29-
mkdir -p /tmp/k9s && cd /tmp/k9s && wget https://github.com/derailed/k9s/releases/download/v0.19.0/k9s_Linux_x86_64.tar.gz && tar -xvf k9s_Linux_x86_64.tar.gz && chmod +x k9s && mv k9s /usr/bin && \
29+
mkdir -p /tmp/k9s && cd /tmp/k9s && wget https://github.com/derailed/k9s/releases/download/v0.19.2/k9s_Linux_x86_64.tar.gz && tar -xvf k9s_Linux_x86_64.tar.gz && chmod +x k9s && mv k9s /usr/bin && \
3030
chmod +x /usr/bin/gotty && \
3131
DEBIAN_FRONTEND=noninteractive apt-get --purge remove -y git && \
3232
DEBIAN_FRONTEND=noninteractive apt-get autoremove -y && \

0 commit comments

Comments
 (0)