From 088550744f7a938aa5f9458c7d837eab1fdc063b Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Sat, 21 Mar 2026 14:10:54 +0000 Subject: [PATCH] fix(e2e): apply RBAC before deploy step The deploy script preflight check (deploy-e2e-headlamp.sh:37-41) verifies RBAC permissions before proceeding, but the workflow never applied the RBAC manifest. Add the missing Apply RBAC step after Setup Helm and before Deploy. Fixes https://github.com/privilegedescalation/headlamp-polaris-plugin/issues/79 Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/e2e.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index c70e4ae..cc3f11e 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -35,6 +35,9 @@ jobs: - name: Setup Helm uses: azure/setup-helm@v4 + - name: Apply RBAC + run: kubectl apply -f deployment/e2e-ci-runner-rbac.yaml + - name: Install dependencies run: npm ci