Skip to content

Commit

Permalink
Is the get.helm.sh from github actions SSL problem solved yet?
Browse files Browse the repository at this point in the history
Revert "Workaround for SSL error with curl get.helm.sh in github actions"

This reverts commit 8e502e5.
  • Loading branch information
solsson committed Dec 7, 2024
1 parent d5dccdc commit a529379
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions runner.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN set -ex; \
); \
\
export DEBIAN_FRONTEND=noninteractive; \
runDeps='ca-certificates curl git jq unzip findutils patch xz-utils gpg apt-transport-https'; \
runDeps='ca-certificates curl git jq unzip findutils patch xz-utils'; \
buildDeps=''; \
apt-get update && apt-get install -y $runDeps $buildDeps --no-install-recommends; \
\
Expand Down Expand Up @@ -43,15 +43,7 @@ COPY bin/y-kustomize /usr/local/src/ystack/bin/
RUN y-kustomize version

COPY bin/y-helm /usr/local/src/ystack/bin/
# RUN y-helm version --client=true
RUN curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /usr/share/keyrings/helm.gpg > /dev/null \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list \
&& apt-get update \
&& apt-get install helm \
&& helm version --client=true \
&& ln -s $(which helm) /usr/local/src/ystack/bin/helm \
&& ln -s $(which helm) /usr/local/src/ystack/bin/y-helm-v3.16.2-bin \
&& y-helm version --client=true
RUN y-helm version --client=true

COPY bin/y-buildctl /usr/local/src/ystack/bin/
RUN y-buildctl --version
Expand Down

0 comments on commit a529379

Please sign in to comment.