Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for HTTPFilters (0.22 sec)

  1. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    		},
    	}
    }
    
    func createHTTPConnectionManager(listenerName, httpVersion string) *envoy_hcm.HttpConnectionManager {
    	hcm := &envoy_hcm.HttpConnectionManager{
    		AccessLog: createAccessLog(listenerName),
    		HttpFilters: []*envoy_hcm.HttpFilter{
    			{
    				Name: "envoy.filters.http.dynamic_forward_proxy",
    				ConfigType: &envoy_hcm.HttpFilter_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/lds.go

    										PathSpecifier: &route.RouteMatch_Prefix{Prefix: "/"},
    									},
    									Action: &route.Route_NonForwardingAction{},
    								}},
    							}},
    						},
    					},
    					HttpFilters: fc,
    				}),
    			},
    		}},
    	}
    	if tlsContext != nil {
    		out.TransportSocket = &core.TransportSocket{
    			Name:       transportSocketName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    				},
    			},
    			expectedListener: listenertest.ListenerTest{FilterChains: []listenertest.FilterChainTest{
    				{
    					NetworkFilters: []string{
    						wellknown.HTTPConnectionManager,
    					},
    					HTTPFilters: []string{
    						xdsfilters.MxFilterName,
    						xdsfilters.Alpn.GetName(),
    						xdsfilters.Fault.GetName(), xdsfilters.Cors.GetName(), wellknown.Router,
    					},
    				},
    			}},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry.go

    		serverSpec.Disabled = true
    	}
    
    	cfg := TracingConfig{
    		ClientSpec: clientSpec,
    		ServerSpec: serverSpec,
    	}
    	return &cfg
    }
    
    // HTTPFilters computes the HttpFilter for a given proxy/class
    func (t *Telemetries) HTTPFilters(proxy *Proxy, class networking.ListenerClass, svc *Service) []*hcm.HttpFilter {
    	if res := t.telemetryFilters(proxy, class, networking.ListenerProtocolHTTP, svc); res != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/lds_test.go

    		if err != nil {
    			t.Fatalf("Could not deserialize http connection manager config: %v", err)
    		}
    		found := false
    		for _, filter := range connectionManagerCfg.HttpFilters {
    			if filter.Name == "envoy.lua" {
    				found = true
    			}
    		}
    		if expected != found {
    			t.Fatalf("Expected Lua filter: %v, found: %v", expected, found)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    			}
    			filterChain.Filters = append(filterChain.Filters, filter)
    			log.Debugf("attached HTTP filter with %d http_filter options to listener %q filter chain %d",
    				len(httpConnectionManagers[i].HttpFilters), ml.Listener.Name, i)
    		}
    	}
    
    	return nil
    }
    
    func (configgen *ConfigGeneratorImpl) buildGatewayListeners(builder *ListenerBuilder) *ListenerBuilder {
    	if builder.node.MergedGateway == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    	if err != nil || hcm == nil {
    		return []string{}, err
    	}
    
    	// Identify RBAC policies. Currently there are no "breadcrumbs" so we only return the policy names.
    	for _, httpFilter := range hcm.HttpFilters {
    		if httpFilter.Name == wellknown.HTTPRoleBasedAccessControl {
    			rbac := &rbachttp.RBAC{}
    			if err := httpFilter.GetTypedConfig().UnmarshalTo(rbac); err == nil {
    				policies := []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top