08a3009ba8
Board directive: E2E tests must run in the `default` namespace. Nothing should persist beyond a test run; no dedicated namespace needed. Changes: - e2e-ci-runner-rbac.yaml: retarget Role/RoleBinding to `default`, remove ClusterRole/ClusterRoleBinding (no longer needed since we don't need cluster-scoped namespace read permission) - e2e.yaml: set E2E_NAMESPACE=default - deploy-e2e-headlamp.sh: default namespace to `default`, remove namespace existence check (default always exists) - teardown-e2e-headlamp.sh: default namespace to `default`, remove namespace existence check guard - headlamp-e2e-values.yaml: update usage comment - e2e/README.md: remove namespace creation prerequisite Closes #78 #79 Co-Authored-By: Paperclip <noreply@paperclip.ing>
32 lines
776 B
YAML
32 lines
776 B
YAML
---
|
|
# Headlamp Helm values for E2E testing.
|
|
#
|
|
# Uses the stock Headlamp image with the plugin loaded via a ConfigMap
|
|
# volume mount. No custom Docker images — the plugin dist/ is packaged
|
|
# as a ConfigMap by deploy-e2e-headlamp.sh.
|
|
#
|
|
# Usage:
|
|
# helm install headlamp-e2e headlamp/headlamp \
|
|
# -n default \
|
|
# -f deployment/headlamp-e2e-values.yaml \
|
|
# --set image.registry=ghcr.io \
|
|
# --set image.repository=headlamp-k8s/headlamp \
|
|
# --set image.tag=latest
|
|
|
|
config:
|
|
pluginsDir: /headlamp/plugins
|
|
watchPlugins: false
|
|
|
|
service:
|
|
type: ClusterIP
|
|
|
|
extraVolumes:
|
|
- name: polaris-plugin
|
|
configMap:
|
|
name: headlamp-polaris-plugin
|
|
|
|
extraVolumeMounts:
|
|
- name: polaris-plugin
|
|
mountPath: /headlamp/plugins/headlamp-polaris
|
|
readOnly: true
|