From c49eb2bd40985cdce1dfe39e0e66a158da3d9ade Mon Sep 17 00:00:00 2001 From: Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> Date: Fri, 17 Mar 2023 09:28:21 +0100 Subject: [PATCH] Bump tools (helm and kubectl) in Dockerfile Signed-off-by: Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8fc45588..fcdbc925 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,14 +23,14 @@ RUN pip install "yamale==$yamale_version" ARG TARGETPLATFORM # Install kubectl -ARG kubectl_version=v1.24.6 +ARG kubectl_version=v1.26.2 LABEL kubectl_version=$kubectl_version RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$kubectl_version/bin/$TARGETPLATFORM/kubectl" && \ chmod +x kubectl && \ mv kubectl /usr/local/bin/ # Install Helm -ARG helm_version=v3.10.0 +ARG helm_version=v3.11.2 LABEL helm_version=$helm_version RUN targetArch=$(echo $TARGETPLATFORM | cut -f2 -d '/') \ && if [ ${targetArch} = "amd64" ]; then \