From 3f16f5c36091774c7ef88e158719de26dfe54640 Mon Sep 17 00:00:00 2001 From: "hugh-hackman[bot]" Date: Mon, 16 Mar 2026 11:00:08 +0000 Subject: [PATCH] ci: add kubectl setup step for E2E plugin deploy The runner doesn't have kubectl pre-installed, so the deploy script fails with 'command not found'. Add azure/setup-kubectl@v4 before the deploy step. Co-Authored-By: Paperclip --- .github/workflows/e2e.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 14fe0c7..5c97719 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -28,6 +28,9 @@ jobs: - name: Build plugin run: npm run build + - name: Setup kubectl + uses: azure/setup-kubectl@v4 + - name: Deploy plugin to Headlamp env: HEADLAMP_URL: ${{ secrets.HEADLAMP_URL || 'http://headlamp.kube-system.svc.cluster.local' }}