Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for HTTPFilters (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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