From 41a6a508f451c818222115ec37f095f764dc0f57 Mon Sep 17 00:00:00 2001 From: Staffan Olsson Date: Tue, 12 Nov 2024 07:14:23 +0100 Subject: [PATCH] temp: debug github action failure with get.helm.sh curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to get.helm.sh:443 --- runner.Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/runner.Dockerfile b/runner.Dockerfile index f539075..27bf937 100644 --- a/runner.Dockerfile +++ b/runner.Dockerfile @@ -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; \ \ @@ -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