From 9612e8c2c190e31abcad03d067abb464ec52ec37 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 6 May 2026 22:22:13 +0000 Subject: [PATCH] fix: align volume name to headlamp-kube-vip-plugin in deploy-e2e-headlamp.sh The volume name was 'rook-plugin' but the ConfigMap is 'headlamp-kube-vip-plugin', causing mount failures. Align both volumeMounts[*].name and volumes[*].name to 'headlamp-kube-vip-plugin'. --- scripts/deploy-e2e-headlamp.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy-e2e-headlamp.sh b/scripts/deploy-e2e-headlamp.sh index 3d75c12..6e55988 100755 --- a/scripts/deploy-e2e-headlamp.sh +++ b/scripts/deploy-e2e-headlamp.sh @@ -121,11 +121,11 @@ spec: initialDelaySeconds: 10 periodSeconds: 10 volumeMounts: - - name: rook-plugin + - name: headlamp-kube-vip-plugin mountPath: /headlamp/plugins/headlamp-kube-vip readOnly: true volumes: - - name: rook-plugin + - name: headlamp-kube-vip-plugin configMap: name: headlamp-kube-vip-plugin ---