Skip to content
Merged
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
4 changes: 2 additions & 2 deletions internal/provider/kubernetes/filters.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func (r *gatewayAPIReconciler) getExtensionRefFilters(ctx context.Context) ([]un
uExtResourceList := &unstructured.UnstructuredList{}
uExtResourceList.SetGroupVersionKind(gvk)
if err := r.client.List(ctx, uExtResourceList); err != nil {
r.log.Info("no associated resources found for %s", gvk.String())
r.log.Info("no associated resources found", "GVK", gvk.String())
return nil, fmt.Errorf("failed to list %s: %w", gvk.String(), err)
}

Expand Down Expand Up @@ -57,7 +57,7 @@ func (r *gatewayAPIReconciler) getExtensionBackendResources(ctx context.Context)
uExtResourceList := &unstructured.UnstructuredList{}
uExtResourceList.SetGroupVersionKind(gvk)
if err := r.client.List(ctx, uExtResourceList); err != nil {
r.log.Info("no associated backend resources found for %s", gvk.String())
r.log.Info("no associated backend resources found", "GVK", gvk.String())
return nil, fmt.Errorf("failed to list %s: %w", gvk.String(), err)
}

Expand Down
1 change: 1 addition & 0 deletions release-notes/current.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ bug fixes: |
Fixed %ROUTE_KIND% operator to be lower-cased when used by clusterStatName in EnvoyProxy API.
Fixed maxAcceptPerSocketEvent being ignored in ClientTrafficPolicy
Fixed the topologyInjectorDisabled and the local cluster was not defined.
Fixed log formatting of improper key-value pairs to avoid DPANIC in controller-runtime logger.

# Enhancements that improve performance.
performance improvements: |
Expand Down