Update helm3 version to 3.11 in LCM/Dockerfile
[osm/devops.git] / 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/