Update helm3 version to 3.11 in LCM/Dockerfile 72/13472/3
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Tue, 30 May 2023 14:24:19 +0000 (16:24 +0200)
committerbeierlm <mark.beierl@canonical.com>
Thu, 22 Jun 2023 13:48:35 +0000 (15:48 +0200)
Change-Id: Ie12bc0ad958a8f1380563032259b7d82340318db
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
docker/LCM/Dockerfile

index a0a0935..9db4162 100644 (file)
@@ -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/