Skip to content

Commit 5756546

Browse files
authored
Update kubectl version to 1.33 (#640)
* Update kubectl versions helm chart version is up to date * Update Dockerfile * Update kubectl version to 1.33
1 parent a58becf commit 5756546

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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.30.4 1.31.0; \
20+
RUN for full_version in 1.30.4 1.31.12 1.32.9 1.33.4; \
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.31 /opt/kubectl/default
28+
RUN ln -s /opt/kubectl/1.33 /opt/kubectl/default
2929

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

marketplace/deployer_helm_base/Dockerfile

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

19-
RUN for full_version in 1.30.4 1.31.0; \
19+
RUN for full_version in 1.30.4 1.31.12 1.32.9 1.33.4; \
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.31 /opt/kubectl/default
27+
RUN ln -s /opt/kubectl/1.33 /opt/kubectl/default
2828

2929
RUN mkdir -p /bin/helm-downloaded \
3030
&& wget -q -O /bin/helm-downloaded/helm.tar.gz \

marketplace/dev/Dockerfile

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

28-
RUN for full_version in 1.30.4 1.31.0; \
28+
RUN for full_version in 1.30.4 1.31.12 1.32.9 1.33.4; \
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.31 /opt/kubectl/default
36+
RUN ln -s /opt/kubectl/1.33 /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 - \

0 commit comments

Comments
 (0)