7e6661073d
Root cause of E2E failures: the E2E tests run against a live Headlamp instance but never deploy the current PR's plugin code. The deployed plugin still uses the old registerPluginSettings name, so the settings component never renders. - Fix Dockerfile output directory from headlamp-polaris-plugin to polaris, matching the deployed plugin identity - Add scripts/deploy-plugin-to-headlamp.sh to build and deploy the plugin to Headlamp via kubectl before E2E tests The e2e.yaml workflow needs a matching update to call this script before running Playwright (requires workflows permission). Co-Authored-By: Paperclip <noreply@paperclip.ing>
11 lines
283 B
Docker
11 lines
283 B
Docker
FROM node:20-alpine AS build
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json* ./
|
|
RUN npm ci --ignore-scripts
|
|
COPY src/ src/
|
|
RUN npx @kinvolk/headlamp-plugin build
|
|
|
|
FROM alpine:3.20
|
|
COPY --from=build /app/dist/ /plugins/polaris/
|
|
COPY --from=build /app/package.json /plugins/polaris/
|