d6c8a8bbfc
The Headlamp chart defaults to creating a ClusterRoleBinding, but the ARC runner service account lacks cluster-scoped RBAC permissions. E2E tests only need Headlamp to serve the UI — no cluster-admin required. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
830 B
YAML
35 lines
830 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 privilegedescalation-dev \
|
|
# -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
|
|
|
|
clusterRoleBinding:
|
|
create: false
|
|
|
|
service:
|
|
type: ClusterIP
|
|
|
|
extraVolumes:
|
|
- name: polaris-plugin
|
|
configMap:
|
|
name: headlamp-polaris-plugin
|
|
|
|
extraVolumeMounts:
|
|
- name: polaris-plugin
|
|
mountPath: /headlamp/plugins/headlamp-polaris
|
|
readOnly: true
|