From fdad1a6da270fa6bb54c5c53a9ac473024b124d3 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Fri, 13 Feb 2026 13:13:52 -0500 Subject: [PATCH] ci: use Headlamp service IP for E2E tests Use the Headlamp ClusterIP (10.43.61.138) directly instead of the ingress hostname to avoid DNS resolution and ingress routing issues on local runners. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- .github/workflows/e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 4503112..d7e8ba3 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -31,7 +31,7 @@ jobs: - name: Run E2E tests run: npm run e2e env: - HEADLAMP_URL: ${{ secrets.HEADLAMP_URL || 'https://headlamp.animaniacs.farh.net' }} + HEADLAMP_URL: ${{ secrets.HEADLAMP_URL || 'http://10.43.61.138' }} HEADLAMP_TOKEN: ${{ secrets.HEADLAMP_TOKEN }} AUTHENTIK_USERNAME: ${{ secrets.AUTHENTIK_USERNAME }} AUTHENTIK_PASSWORD: ${{ secrets.AUTHENTIK_PASSWORD }}