Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for httpfilter (0.36 sec)

  1. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

      name: test-relative-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      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:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listenertest/match.go

    	if want.TotalMatch {
    		if want.NetworkFilters != nil {
    			assert.Equal(t, want.NetworkFilters, haveNetwork, context("network filters should be equal"))
    		}
    		if want.HTTPFilters != nil {
    			assert.Equal(t, want.HTTPFilters, haveHTTP, context("http should be equal"))
    		}
    	} else {
    		if missing := sets.SortedList(sets.New(want.NetworkFilters...).Difference(sets.New(haveNetwork...))); len(missing) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tests/testdata/bootstrap_tmpl.json

                                }
                              }
                            ]
                          }
    
                      ]
                   },
                   "http_filters": [
                  {
                  "name": "envoy.cors"
                  },
                  {
                  "name": "envoy.filters.http.router"
                  }
                  ]
                }
              }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 9.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews
      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:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. releasenotes/notes/31573.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: EnvoyFilter
    issue:
      - 31573
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 24 11:42:18 UTC 2021
    - 180 bytes
    - Viewed (0)
  6. releasenotes/notes/27425.yaml

    kind: bug-fix
    area: traffic-management
    issue:
      - 27425
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 22 14:51:15 UTC 2020
    - 295 bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TestProxyServer.groovy

    import org.gradle.integtests.fixtures.executer.GradleExecuter
    import org.gradle.util.ports.FixedAvailablePortAllocator
    import org.gradle.util.ports.PortAllocator
    import org.junit.rules.ExternalResource
    import org.littleshoot.proxy.HttpFilters
    import org.littleshoot.proxy.HttpFiltersSourceAdapter
    import org.littleshoot.proxy.HttpProxyServer
    import org.littleshoot.proxy.ProxyAuthenticator
    import org.littleshoot.proxy.impl.DefaultHttpProxyServer
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/networkfilter.go

    func buildNetworkFiltersStack(p protocol.Instance, tcpFilter *listener.Filter, statPrefix string, clusterName string) []*listener.Filter {
    	filterstack := make([]*listener.Filter, 0)
    	switch p {
    	case protocol.Mongo:
    		if features.EnableMongoFilter {
    			filterstack = append(filterstack, buildMongoFilter(statPrefix), tcpFilter)
    		} else {
    			filterstack = append(filterstack, tcpFilter)
    		}
    	case protocol.Redis:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. pilot/test/xdstest/extract.go

    	nwFilters := []string{}
    	httpFilters := []string{}
    	for _, fc := range fcs.Filters {
    		if fc.Name == wellknown.HTTPConnectionManager {
    			h := &hcm.HttpConnectionManager{}
    			if fc.GetTypedConfig() != nil {
    				if err := fc.GetTypedConfig().UnmarshalTo(h); err != nil {
    					t.Fatalf("failed to unmarshal hcm: %v", err)
    				}
    			}
    			for _, hf := range h.HttpFilters {
    				httpFilters = append(httpFilters, hf.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. tests/integration/telemetry/policy/testdata/enable_envoy_local_ratelimit.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-local-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
        labels:
          app: clt
      configPatches:
        - applyTo: HTTP_FILTER
          patch:
            operation: INSERT_BEFORE
            value:
              name: envoy.filters.http.local_ratelimit
              typed_config:
                "@type": type.googleapis.com/udpa.type.v1.TypedStruct
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 02 03:31:35 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top