From 3262469e5a865151d41e8f89c159fae61bfa6fd3 Mon Sep 17 00:00:00 2001 From: dresi Date: Wed, 10 Jun 2026 17:56:56 +0200 Subject: [PATCH] debug: test TLS to token endpoint specifically --- .gitea/workflows/telegraf-snmp.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/telegraf-snmp.yaml b/.gitea/workflows/telegraf-snmp.yaml index 03ecf60..63edf0c 100644 --- a/.gitea/workflows/telegraf-snmp.yaml +++ b/.gitea/workflows/telegraf-snmp.yaml @@ -42,8 +42,10 @@ jobs: cat /proc/1/environ 2>/dev/null | tr "\0" "\n" echo "=== Certs in bundle ===" 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 harbor.lan root ===" wget -qO /dev/null https://harbor.lan/ 2>&1 && echo "TLS OK" || echo "TLS FAILED" + echo "=== TLS test harbor.lan token endpoint ===" + wget -qO /dev/null https://harbor.lan/service/token 2>&1 && echo "TLS OK" || echo "TLS FAILED" ' - name: Build and push image