Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/l4lb/l4controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func NewILBController(ctx *context.ControllerContext, stopCh <-chan struct{}, lo
if addSvc.Spec.LoadBalancerClass != nil {
svcLogger.V(4).Info("Ignoring service managed by another controller", "serviceLoadBalancerClass", *addSvc.Spec.LoadBalancerClass)
} else {
svcLogger.V(4).Info("Ignoring add for non-lb service", "serviceType", svcType)
svcLogger.V(4).Info("Ignoring creation of service", "serviceType", svcType)
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion pkg/l4lb/l4netlbcontroller.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ func NewL4NetLBController(
l4netLBc.svcQueue.Enqueue(addSvc)
l4netLBc.enqueueTracker.Track()
} else {
svcLogger.V(4).Info("Ignoring add for non external lb service")
svcLogger.V(4).Info("Ignoring creation of service")
}
},
// Deletes will be handled in the Update when the deletion timestamp is set.
Expand Down