540f0a7890
The rook plugin E2E workflow was calling the reusable plugin-e2e workflow without the required plugin-name input. This caused the ConfigMap naming and mount path to fall back to the headlamp-kube-vip defaults, breaking E2E runs for the rook plugin. Fix: pass plugin-name: rook to the reusable workflow.
25 lines
436 B
YAML
25 lines
436 B
YAML
name: E2E Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: e2e-${{ github.repository }}
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
e2e:
|
|
uses: privilegedescalation/.github/.github/workflows/plugin-e2e.yaml@main
|
|
with:
|
|
node-version: "22"
|
|
headlamp-version: v0.40.1
|
|
e2e-namespace: headlamp-dev
|
|
plugin-name: rook
|