File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed
Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,18 @@ RUN pip3 install \
1515 wheel \
1616 pyOpenSSL \
1717 pyyaml \
18- six
18+ six \
19+ cryptography>=44.0.1
1920
20- RUN for full_version in 1.33.5 1.34 .0; \
21+ RUN for full_version in 1.30.4 1.31 .0; \
2122 do \
2223 version=${full_version%.*} \
2324 && mkdir -p /opt/kubectl/$version \
2425 && wget -q -O /opt/kubectl/$version/kubectl \
2526 https://storage.googleapis.com/kubernetes-release/release/v$full_version/bin/linux/amd64/kubectl \
2627 && chmod 755 /opt/kubectl/$version/kubectl; \
2728 done;
28- RUN ln -s /opt/kubectl/1.33 /opt/kubectl/default
29+ RUN ln -s /opt/kubectl/1.31 /opt/kubectl/default
2930
3031COPY marketplace/deployer_envsubst_base/* /bin/
3132COPY marketplace/deployer_util/* /bin/
Original file line number Diff line number Diff line change @@ -14,17 +14,18 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1414RUN pip3 install \
1515 wheel \
1616 pyOpenSSL \
17- pyyaml
17+ pyyaml \
18+ cryptography>=44.0.1
1819
19- RUN for full_version in 1.33.5 1.34 .0; \
20+ RUN for full_version in 1.30.4 1.31 .0; \
2021 do \
2122 version=${full_version%.*} \
2223 && mkdir -p /opt/kubectl/$version \
2324 && wget -q -O /opt/kubectl/$version/kubectl \
2425 https://storage.googleapis.com/kubernetes-release/release/v$full_version/bin/linux/amd64/kubectl \
2526 && chmod 755 /opt/kubectl/$version/kubectl; \
2627 done;
27- RUN ln -s /opt/kubectl/1.33 /opt/kubectl/default
28+ RUN ln -s /opt/kubectl/1.31 /opt/kubectl/default
2829
2930RUN mkdir -p /bin/helm-downloaded \
3031 && wget -q -O /bin/helm-downloaded/helm.tar.gz \
Original file line number Diff line number Diff line change @@ -23,17 +23,18 @@ RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.c
2323RUN pip3 install \
2424 wheel \
2525 pyOpenSSL \
26- pyyaml
26+ pyyaml \
27+ cryptography>=44.0.1
2728
28- RUN for full_version in 1.33.5 1.34 .0; \
29+ RUN for full_version in 1.30.4 1.31 .0; \
2930 do \
3031 version=${full_version%.*} \
3132 && mkdir -p /opt/kubectl/$version \
3233 && wget -q -O /opt/kubectl/$version/kubectl \
3334 https://storage.googleapis.com/kubernetes-release/release/v$full_version/bin/linux/amd64/kubectl \
3435 && chmod 755 /opt/kubectl/$version/kubectl; \
3536 done;
36- RUN ln -s /opt/kubectl/1.33 /opt/kubectl/default
37+ RUN ln -s /opt/kubectl/1.31 /opt/kubectl/default
3738
3839RUN 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 \
3940 && curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key --keyring /usr/share/keyrings/docker.gpg add - \
You can’t perform that action at this time.
0 commit comments