From 115f5b9f3b6f5a5742ab8572df081362102c99ed Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Tue, 30 May 2023 16:24:19 +0200 Subject: [PATCH] Update helm3 version to 3.11 in LCM/Dockerfile Change-Id: Ie12bc0ad958a8f1380563032259b7d82340318db Signed-off-by: garciadeblas --- docker/LCM/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/LCM/Dockerfile b/docker/LCM/Dockerfile index a0a09355..9db41626 100644 --- a/docker/LCM/Dockerfile +++ b/docker/LCM/Dockerfile @@ -44,7 +44,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \ # https://kubernetes.io/releases/ RUN curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - \ && echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | tee -a /etc/apt/sources.list.d/kubernetes.list \ - && apt-get update && apt-get install -y kubectl=1.23.3-00 + && apt-get update && apt-get install -y kubectl=1.26.5-00 RUN curl https://get.helm.sh/helm-v2.17.0-linux-amd64.tar.gz --output helm-v2.17.0.tar.gz \ && tar -zxvf helm-v2.17.0.tar.gz \ @@ -52,8 +52,8 @@ RUN curl https://get.helm.sh/helm-v2.17.0-linux-amd64.tar.gz --output helm-v2.17 && rm -r linux-amd64/ # https://github.com/helm/helm/releases -RUN curl https://get.helm.sh/helm-v3.7.2-linux-amd64.tar.gz --output helm-v3.7.2.tar.gz \ - && tar -zxvf helm-v3.7.2.tar.gz \ +RUN curl https://get.helm.sh/helm-v3.11.3-linux-amd64.tar.gz --output helm-v3.11.3.tar.gz \ + && tar -zxvf helm-v3.11.3.tar.gz \ && mv linux-amd64/helm /usr/local/bin/helm3 \ && rm -r linux-amd64/ -- 2.17.1