Skip to content

Commit 8d76357

Browse files
authored
updating kubectl and helm versions (#631)
1 parent 633672a commit 8d76357

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

marketplace/deployer_envsubst_base/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ RUN pip3 install \
1717
pyyaml \
1818
six
1919

20-
RUN for full_version in 1.29.6 1.30.3; \
20+
RUN for full_version in 1.30.3 1.31.0; \
2121
do \
2222
version=${full_version%.*} \
2323
&& mkdir -p /opt/kubectl/$version \
2424
&& wget -q -O /opt/kubectl/$version/kubectl \
2525
https://storage.googleapis.com/kubernetes-release/release/v$full_version/bin/linux/amd64/kubectl \
2626
&& chmod 755 /opt/kubectl/$version/kubectl; \
2727
done;
28-
RUN ln -s /opt/kubectl/1.29 /opt/kubectl/default
28+
RUN ln -s /opt/kubectl/1.30 /opt/kubectl/default
2929

3030
COPY marketplace/deployer_envsubst_base/* /bin/
3131
COPY marketplace/deployer_util/* /bin/

marketplace/deployer_helm_base/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ RUN pip3 install \
1616
pyOpenSSL \
1717
pyyaml
1818

19-
RUN for full_version in 1.29.6 1.30.3; \
19+
RUN for full_version in 1.30.3 1.31.0; \
2020
do \
2121
version=${full_version%.*} \
2222
&& mkdir -p /opt/kubectl/$version \
2323
&& wget -q -O /opt/kubectl/$version/kubectl \
2424
https://storage.googleapis.com/kubernetes-release/release/v$full_version/bin/linux/amd64/kubectl \
2525
&& chmod 755 /opt/kubectl/$version/kubectl; \
2626
done;
27-
RUN ln -s /opt/kubectl/1.29 /opt/kubectl/default
27+
RUN ln -s /opt/kubectl/1.30 /opt/kubectl/default
2828

2929
RUN mkdir -p /bin/helm-downloaded \
3030
&& wget -q -O /bin/helm-downloaded/helm.tar.gz \
31-
https://get.helm.sh/helm-v3.15.4-linux-amd64.tar.gz \
31+
https://get.helm.sh/helm-v3.16.1-linux-amd64.tar.gz \
3232
&& tar -zxvf /bin/helm-downloaded/helm.tar.gz -C /bin/helm-downloaded \
3333
&& mv /bin/helm-downloaded/linux-amd64/helm /bin/ \
3434
&& rm -rf /bin/helm-downloaded

marketplace/dev/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@ RUN pip3 install \
2525
pyOpenSSL \
2626
pyyaml
2727

28-
RUN for full_version in 1.29.6 1.30.3; \
28+
RUN for full_version in 1.30.3 1.31.0; \
2929
do \
3030
version=${full_version%.*} \
3131
&& mkdir -p /opt/kubectl/$version \
3232
&& wget -q -O /opt/kubectl/$version/kubectl \
3333
https://storage.googleapis.com/kubernetes-release/release/v$full_version/bin/linux/amd64/kubectl \
3434
&& chmod 755 /opt/kubectl/$version/kubectl; \
3535
done;
36-
RUN ln -s /opt/kubectl/1.29 /opt/kubectl/default
36+
RUN ln -s /opt/kubectl/1.30 /opt/kubectl/default
3737

3838
RUN echo "deb [signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu jammy stable" | tee /etc/apt/sources.list.d/docker.list \
3939
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key --keyring /usr/share/keyrings/docker.gpg add - \
4040
&& apt-get -y update \
4141
&& apt-get -y install docker-ce
4242
RUN mkdir -p /bin/helm-downloaded \
4343
&& wget -q -O /bin/helm-downloaded/helm.tar.gz \
44-
https://get.helm.sh/helm-v3.15.4-linux-amd64.tar.gz \
44+
https://get.helm.sh/helm-v3.16.1-linux-amd64.tar.gz \
4545
&& tar -zxvf /bin/helm-downloaded/helm.tar.gz -C /bin/helm-downloaded \
4646
&& mv /bin/helm-downloaded/linux-amd64/helm /bin/ \
4747
&& rm -rf /bin/helm-downloaded

0 commit comments

Comments
 (0)