Bug 1841: LTS Support helm 28/11628/1
authoraticig <gulsum.atici@canonical.com>
Fri, 4 Feb 2022 12:57:02 +0000 (15:57 +0300)
committeraticig <gulsum.atici@canonical.com>
Fri, 4 Feb 2022 12:57:06 +0000 (15:57 +0300)
Helm version is upgraded to 2.17.0, 3.7.2 in LCM Dockerfile.

Change-Id: I6fbdd899d2f3d273d2c463cf3aeda594f6059451
Signed-off-by: aticig <gulsum.atici@canonical.com>
Dockerfile.local

index d57235b..23683ea 100644 (file)
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM ubuntu:18.04
+FROM ubuntu:20.04
 
 # Set the working directory to /app
 WORKDIR /app/LCM
@@ -24,13 +24,13 @@ RUN apt-get update && apt-get install -y curl xz-utils gnupg2 \
     && 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
 
-RUN curl https://get.helm.sh/helm-v2.15.2-linux-amd64.tar.gz --output helm-v2.15.2.tar.gz \
-    && tar -zxvf helm-v2.15.2.tar.gz \
+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 \
     && mv linux-amd64/helm /usr/local/bin/helm \
     && rm -r linux-amd64/
 
-RUN curl https://get.helm.sh/helm-v3.3.4-linux-amd64.tar.gz --output helm-v3.3.4.tar.gz \
-    && tar -zxvf helm-v3.3.4.tar.gz \
+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 \
     && mv linux-amd64/helm /usr/local/bin/helm3 \
     && rm -r linux-amd64/