diff --git a/pkg/controller/csi_handler.go b/pkg/controller/csi_handler.go index 2a90d7fee..465ec59d3 100644 --- a/pkg/controller/csi_handler.go +++ b/pkg/controller/csi_handler.go @@ -142,6 +142,11 @@ func (h *csiHandler) ReconcileVA(ctx context.Context) error { } for _, va := range vas { + if va.Spec.Attacher != h.attacherName { + // skip VolumeAttachments of other CSI drivers + continue + } + nodeID, err := h.getNodeID(logger, h.attacherName, va.Spec.NodeName, va) if err != nil { logger.Error(err, "Failed to find node ID err")