Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for EnvoyFilter_HTTP_ROUTE (0.21 sec)

  1. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    			args: args{
    				patchContext: networking.EnvoyFilter_GATEWAY,
    				patches: map[networking.EnvoyFilter_ApplyTo][]*model.EnvoyFilterConfigPatchWrapper{
    					networking.EnvoyFilter_HTTP_ROUTE: {
    						{
    							ApplyTo: networking.EnvoyFilter_HTTP_ROUTE,
    							Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    								ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_RouteConfiguration{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/envoyfilter.go

    			// http filter and http route, convert the rest to add
    			if cpw.ApplyTo != networking.EnvoyFilter_HTTP_FILTER &&
    				cpw.ApplyTo != networking.EnvoyFilter_NETWORK_FILTER &&
    				cpw.ApplyTo != networking.EnvoyFilter_HTTP_ROUTE &&
    				cpw.ApplyTo != networking.EnvoyFilter_LISTENER_FILTER {
    				cpw.Operation = networking.EnvoyFilter_Patch_ADD
    			}
    		}
    		out.Patches[cp.ApplyTo] = append(out.Patches[cp.ApplyTo], cpw)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    		patchHTTPRoute(patchContext, patches, routeConfiguration, virtualHost, index, &routesRemoved, portMap, &clonedVhostRoutes)
    	}
    
    	// now for the adds
    	for _, rp := range patches[networking.EnvoyFilter_HTTP_ROUTE] {
    		applied := false
    		if !commonConditionMatch(patchContext, rp) ||
    			!routeConfigurationMatch(patchContext, routeConfiguration, rp, portMap) ||
    			!virtualHostMatch(virtualHost, rp) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pkg/config/validation/envoyfilter/envoyfilter.go

    					}
    				}
    			}
    		case networking.EnvoyFilter_ROUTE_CONFIGURATION, networking.EnvoyFilter_VIRTUAL_HOST, networking.EnvoyFilter_HTTP_ROUTE:
    			if cp.Match != nil && cp.Match.ObjectTypes != nil {
    				if cp.Match.GetRouteConfiguration() == 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)
  5. pilot/pkg/networking/core/httproute.go

    		envoyfilterKeys := efw.KeysApplyingTo(
    			networking.EnvoyFilter_ROUTE_CONFIGURATION,
    			networking.EnvoyFilter_VIRTUAL_HOST,
    			networking.EnvoyFilter_HTTP_ROUTE,
    		)
    		for _, routeName := range routeNames {
    			rc, cached := configgen.buildSidecarOutboundHTTPRouteConfig(node, req, routeName, vHostCache, efw, envoyfilterKeys)
    			if cached && !features.EnableUnsafeAssertions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top