diff --git a/pkg/controller/volume/expand/expand_controller.go b/pkg/controller/volume/expand/expand_controller.go index ba8467e9637..62f33c8bb1a 100644 --- a/pkg/controller/volume/expand/expand_controller.go +++ b/pkg/controller/volume/expand/expand_controller.go @@ -282,11 +282,6 @@ func (expc *expandController) syncHandler(ctx context.Context, key string) error if err != nil || volumePlugin == nil { msg := fmt.Errorf("didn't find a plugin capable of expanding the volume; " + "waiting for an external controller to process this PVC") - eventType := v1.EventTypeNormal - if err != nil { - eventType = v1.EventTypeWarning - } - expc.recorder.Event(pvc, eventType, events.ExternalExpanding, fmt.Sprintf("Ignoring the PVC: %v.", msg)) klog.Infof("Ignoring the PVC %q (uid: %q) : %v.", key, pvc.UID, msg) // If we are expecting that an external plugin will handle resizing this volume then // is no point in requeuing this PVC.