Skip to content

Commit

Permalink
Upgrade helm and kubectl to latest versions (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiChengYan authored Jul 11, 2022
1 parent 755ad8d commit b309eb9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion marketplace/deployer_envsubst_base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN pip3 install \
pyyaml \
six

RUN for full_version in 1.21.11 1.22.8 1.23.5; \
RUN for full_version in 1.21.12 1.22.8 1.23.7; \
do \
version=${full_version%.*} \
&& mkdir -p /opt/kubectl/$version \
Expand Down
4 changes: 2 additions & 2 deletions marketplace/deployer_helm_base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN pip3 install \
pyyaml \
six

RUN for full_version in 1.21.11 1.22.8 1.23.5; \
RUN for full_version in 1.21.12 1.22.8 1.23.7; \
do \
version=${full_version%.*} \
&& mkdir -p /opt/kubectl/$version \
Expand All @@ -29,7 +29,7 @@ RUN ln -s /opt/kubectl/1.22 /opt/kubectl/default

RUN mkdir -p /bin/helm-downloaded \
&& wget -q -O /bin/helm-downloaded/helm.tar.gz \
https://get.helm.sh/helm-v3.8.2-linux-amd64.tar.gz \
https://get.helm.sh/helm-v3.9.0-linux-amd64.tar.gz \
&& tar -zxvf /bin/helm-downloaded/helm.tar.gz -C /bin/helm-downloaded \
&& mv /bin/helm-downloaded/linux-amd64/helm /bin/ \
&& rm -rf /bin/helm-downloaded
Expand Down
4 changes: 2 additions & 2 deletions marketplace/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN pip3 install \
pyyaml \
six

RUN for full_version in 1.21.11 1.22.8 1.23.5; \
RUN for full_version in 1.21.12 1.22.8 1.23.7; \
do \
version=${full_version%.*} \
&& mkdir -p /opt/kubectl/$version \
Expand All @@ -44,7 +44,7 @@ RUN echo "deb [signed-by=/usr/share/keyrings/docker.gpg] https://download.docker

RUN mkdir -p /bin/helm-downloaded \
&& wget -q -O /bin/helm-downloaded/helm.tar.gz \
https://get.helm.sh/helm-v3.8.2-linux-amd64.tar.gz \
https://get.helm.sh/helm-v3.9.0-linux-amd64.tar.gz \
&& tar -zxvf /bin/helm-downloaded/helm.tar.gz -C /bin/helm-downloaded \
&& mv /bin/helm-downloaded/linux-amd64/helm /bin/ \
&& rm -rf /bin/helm-downloaded
Expand Down

0 comments on commit b309eb9

Please sign in to comment.