1
0
mirror of synced 2026-02-06 10:55:56 +00:00

Update kubectl to 1.23.1 in flux-cli container image

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan
2022-01-18 18:34:16 +02:00
parent 809cb79828
commit af00610a61

View File

@@ -3,7 +3,7 @@ FROM alpine:3.15 as builder
RUN apk add --no-cache ca-certificates curl
ARG ARCH=linux/amd64
ARG KUBECTL_VER=1.22.2
ARG KUBECTL_VER=1.23.1
RUN curl -sL https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/${ARCH}/kubectl \
-o /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl && \