Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for filterchain (0.18 sec)

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

    	Applied Result = "applied"
    )
    
    type PatchType string
    
    const (
    	Cluster        PatchType = "cluster"
    	Listener       PatchType = "listener"
    	ListenerFilter PatchType = "listenerfilter"
    	FilterChain    PatchType = "filterchain"
    	NetworkFilter  PatchType = "networkfilter"
    	// nolint
    	HttpFilter  PatchType = "httpfilter"
    	Route       PatchType = "route"
    	VirtualHost PatchType = "vhost"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    istio-system labels: istio.io/rev: 1-10-0 install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Pilot" spec: configPatches: - applyTo: HTTP_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.10.*' listener: filterChain: filter: name: "envoy.filters.network.http_connection_manager" patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.extensio...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-operation.yaml

      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: REPLACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpBuildCacheServer.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.junit.rules.ExternalResource
    
    import javax.servlet.DispatcherType
    import javax.servlet.Filter
    import javax.servlet.FilterChain
    import javax.servlet.FilterConfig
    import javax.servlet.ServletException
    import javax.servlet.ServletRequest
    import javax.servlet.ServletResponse
    import javax.servlet.http.HttpServletRequest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder.go

    func buildOutboundCatchAllNetworkFilterChains(node *model.Proxy, push *model.PushContext) []*listener.FilterChain {
    	filterStack := buildOutboundCatchAllNetworkFiltersOnly(push, node)
    	chains := make([]*listener.FilterChain, 0, 2)
    	chains = append(chains, blackholeFilterChain(push, node), &listener.FilterChain{
    		Name:    model.VirtualOutboundCatchAllTCPFilterChainName,
    		Filters: filterStack,
    	})
    	return chains
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
          operation: REPLACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listenertest/match.go

    				t.Fatalf("%v: missing listener filters: %v", l.Name, missing)
    			}
    		}
    	}
    
    	// Check FilterChains
    	if lt.FilterChains != nil {
    		if lt.TotalMatch {
    			// First check they are the same size
    			if len(lt.FilterChains) != len(l.FilterChains) {
    				want := []string{}
    				for _, n := range lt.FilterChains {
    					want = append(want, n.Name)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_waypoint.go

    			tcpName := name + "-tcp"
    			tcpChain := &listener.FilterChain{
    				Filters: lb.buildInboundNetworkFilters(cc),
    				Name:    tcpName,
    			}
    			cc.clusterName = model.BuildSubsetKey(model.TrafficDirectionInboundVIP, "http", svc.Hostname, port.Port)
    			httpName := name + "-http"
    			httpChain := &listener.FilterChain{
    				Filters: lb.buildWaypointInboundHTTPFilters(svc, cc),
    				Name:    httpName,
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ParallelDownloadsPerformanceTest.groovy

    import org.gradle.performance.annotations.Scenario
    import org.gradle.profiler.BuildContext
    import org.gradle.profiler.BuildMutator
    
    import javax.servlet.DispatcherType
    import javax.servlet.Filter
    import javax.servlet.FilterChain
    import javax.servlet.FilterConfig
    import javax.servlet.ServletException
    import javax.servlet.ServletRequest
    import javax.servlet.ServletResponse
    import javax.servlet.http.HttpServletRequest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. pilot/test/xdstest/extract.go

    	res := map[string]*listener.ListenerFilter{}
    	for _, lf := range l.ListenerFilters {
    		res[lf.Name] = lf
    	}
    	return res
    }
    
    func ExtractFilterChain(name string, l *listener.Listener) *listener.FilterChain {
    	for _, f := range l.GetFilterChains() {
    		if f.GetName() == name {
    			return f
    		}
    	}
    	return nil
    }
    
    func ExtractFilterChainNames(l *listener.Listener) []string {
    	res := []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top