From 288a2b03b2d4140490743526728d8f249e73cf58 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 6 May 2026 02:21:14 +0000 Subject: [PATCH] Add e2e-namespace input to plugin-e2e workflow --- .github/workflows/plugin-e2e.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/plugin-e2e.yaml b/.github/workflows/plugin-e2e.yaml index e1dc1b0..2317dd7 100644 --- a/.github/workflows/plugin-e2e.yaml +++ b/.github/workflows/plugin-e2e.yaml @@ -13,6 +13,11 @@ on: required: false type: string default: 'v0.40.1' + e2e-namespace: + description: 'Kubernetes namespace for E2E Headlamp instance' + required: false + type: string + default: 'headlamp-dev' jobs: e2e: @@ -20,7 +25,7 @@ jobs: timeout-minutes: 15 env: - E2E_NAMESPACE: headlamp-dev + E2E_NAMESPACE: ${{ inputs.e2e-namespace }} E2E_RELEASE: headlamp-e2e HEADLAMP_VERSION: ${{ inputs.headlamp-version }}