debug: check SSL env vars of buildkitd process
Some checks failed
Build and push telegraf-snmp image / build-and-push-image (push) Failing after 1m54s

This commit is contained in:
dresi 2026-06-10 17:51:17 +02:00
parent e99e4da96c
commit 18c15a386e

View File

@ -36,12 +36,14 @@ jobs:
BUILDER=$(docker ps --filter "name=buildx_buildkit" --format "{{.Names}}" | head -1) BUILDER=$(docker ps --filter "name=buildx_buildkit" --format "{{.Names}}" | head -1)
echo "=== Builder: $BUILDER ===" echo "=== Builder: $BUILDER ==="
docker exec "$BUILDER" sh -c ' docker exec "$BUILDER" sh -c '
echo "=== SSL env vars in current shell ==="
env | grep -iE "ssl|cert|tls|ca_" || echo "none"
echo "=== SSL env vars of buildkitd (PID 1) ==="
cat /proc/1/environ 2>/dev/null | tr "\0" "\n" | grep -iE "ssl|cert|tls|ca_" || echo "none"
echo "=== Certs in bundle ===" echo "=== Certs in bundle ==="
grep -c "BEGIN CERTIFICATE" /etc/ssl/certs/ca-certificates.crt 2>/dev/null || echo "bundle not found" grep -c "BEGIN CERTIFICATE" /etc/ssl/certs/ca-certificates.crt 2>/dev/null || echo "bundle not found"
echo "=== TLS test to harbor.lan ===" echo "=== TLS test to harbor.lan ==="
wget -qO /dev/null https://harbor.lan/ 2>&1 && echo "TLS OK" || echo "TLS FAILED" wget -qO /dev/null https://harbor.lan/ 2>&1 && echo "TLS OK" || echo "TLS FAILED"
echo "=== Last cert in bundle ==="
awk "/BEGIN CERT/{p=1} p{print} /END CERT/{p=0}" /etc/ssl/certs/ca-certificates.crt | tail -20
' '
- name: Build and push image - name: Build and push image