From 3080e84a2bc2b0a2b094e99619ed3f89e59a3929 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 6 May 2026 18:49:08 +0000 Subject: [PATCH] fix: correct volume name from rook-plugin to headlamp-kube-vip-plugin The deploy script had hardcoded 'rook-plugin' as the volume name but should be 'headlamp-kube-vip-plugin' to match the ConfigMap. Co-Authored-By: Paperclip --- 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 ---