Skip to content

Commit

Permalink
temp: debug github action failure with get.helm.sh
Browse files Browse the repository at this point in the history
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to get.helm.sh:443
  • Loading branch information
solsson committed Nov 12, 2024
1 parent ea23ebf commit 41a6a50
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 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'; \
runDeps='ca-certificates curl git jq unzip findutils patch xz-utils dnsutils'; \
buildDeps=''; \
apt-get update && apt-get install -y $runDeps $buildDeps --no-install-recommends; \
\
Expand Down Expand Up @@ -43,7 +43,11 @@ 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 nslookup get.helm.sh; \
curl -v -I https://get.helm.sh/helm-v3.16.1-linux-arm64.tar.gz; \
curl -k -v -I https://get.helm.sh/helm-v3.16.1-linux-arm64.tar.gz; \
export CURL_SSL_VERIFYPEER=0; \
DEBUG=true DEBUGDEBUG=true y-helm version --client=true

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

0 comments on commit 41a6a50

Please sign in to comment.