Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EnvoyFilter_HTTP_FILTER (0.54 sec)

  1. pkg/config/validation/envoyfilter/envoyfilter_test.go

    		{name: "listener with sub filter match and invalid filter name", in: &networking.EnvoyFilter{
    			ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    				{
    					ApplyTo: networking.EnvoyFilter_HTTP_FILTER,
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Listener{
    							Listener: &networking.EnvoyFilter_ListenerMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/config/validation/envoyfilter/envoyfilter.go

    		// ensure that applyTo, match and patch all line up
    		switch cp.ApplyTo {
    		case networking.EnvoyFilter_LISTENER,
    			networking.EnvoyFilter_FILTER_CHAIN,
    			networking.EnvoyFilter_NETWORK_FILTER,
    			networking.EnvoyFilter_HTTP_FILTER:
    			if cp.Match != nil && cp.Match.ObjectTypes != nil {
    				if cp.Match.GetListener() == nil {
    					errs = validation.AppendValidation(errs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    			return
    			// todo: figure out a non noisy logging option here
    			//  as this loop will be called very frequently
    		}
    	}
    	for _, lp := range patches[networking.EnvoyFilter_HTTP_FILTER] {
    		applied := false
    		if !commonConditionMatch(patchContext, lp) ||
    			!listenerMatch(lis, lp) ||
    			!filterChainMatch(lis, fc, lp) ||
    			!networkFilterMatch(filter, lp) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top