Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for rate_limits (0.17 sec)

  1. samples/bookinfo/policy/productpage_envoy_ratelimit.yaml

          patch:
            operation: INSERT_BEFORE
            value:
              name: envoy.ratelimit
              typed_config:
                "@type": type.googleapis.com/envoy.extensions.filters.http.ratelimit.v3.RateLimit
                # domain can be anything! Match it to the ratelimter service config
                domain: productpage-ratelimit
                failure_mode_deny: true
                rate_limit_service:
                  grpc_service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 10 15:30:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

          patch:
            operation: INSERT_BEFORE
            value:
              name: envoy.filters.http.ratelimit
              typed_config:
                "@type": type.googleapis.com/envoy.extensions.filters.http.ratelimit.v3.RateLimit
                # domain can be anything! Match it to the ratelimter service config
                domain: echo-ratelimit
                failure_mode_deny: true
                rate_limit_service:
                  grpc_service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. tests/integration/telemetry/policy/testdata/enable_envoy_local_ratelimit_sa.yaml

            context: SIDECAR_INBOUND
            routeConfiguration:
              vhost:
                name: "inbound|http|80"
          patch:
            operation: MERGE
            value:
              route:
                rate_limits:
                - actions:
                  - extension:
                      name: custom
                      typed_config:
                        "@type": type.googleapis.com/udpa.type.v1.TypedStruct
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 24 23:09:50 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. samples/ratelimit/local-rate-limit-service.yaml

              vhost:
                name: "inbound|http|8000"
                route:
                  action: ANY
          patch:
            operation: MERGE
            value:
              route:
                rate_limits:
                  - actions:
                      - remote_address: {}
                  - actions:
                      - header_value_match:
                          descriptor_value: "productpage"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    	}
    	replacedSidecarInboundRC := &route.RouteConfiguration{
    		Name: "inbound|http|80",
    		VirtualHosts: []*route.VirtualHost{
    			{
    				Name:    "replaced",
    				Domains: []string{"replaced.com"},
    				RateLimits: []*route.RateLimit{
    					{
    						Actions: []*route.RateLimit_Action{
    							{
    								ActionSpecifier: &route.RateLimit_Action_RequestHeaders_{
    									RequestHeaders: &route.RateLimit_Action_RequestHeaders{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. samples/ratelimit/rate-limit-service.yaml

    metadata:
      name: ratelimit
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratelimit
      strategy:
        type: Recreate
      template:
        metadata:
          labels:
            app: ratelimit
        spec:
          containers:
          - image: envoyproxy/ratelimit:9d8d70a8 # 2022/08/16
            imagePullPolicy: IfNotPresent
            name: ratelimit
            command: ["/bin/ratelimit"]
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tests/integration/telemetry/policy/testdata/rate-limit-configmap.yaml

    #   limitations under the License.
    
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: ratelimit-config
    data:
      config.yaml: |
        domain: echo-ratelimit
        descriptors:
          - key: PATH
            value: "/"
            rate_limit:
              unit: minute
              requests_per_unit: 1
          - key: PATH
            rate_limit:
              unit: minute
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 15 19:50:52 UTC 2021
    - 901 bytes
    - Viewed (0)
  8. tests/integration/telemetry/policy/envoy_ratelimit_test.go

    	}
    
    	ing = ist.IngressFor(ctx.Clusters().Default())
    
    	ratelimitNs, err = namespace.New(ctx, namespace.Config{
    		Prefix: "istio-ratelimit",
    	})
    	if err != nil {
    		return
    	}
    
    	err = ctx.ConfigIstio().File(ratelimitNs.Name(), "testdata/rate-limit-configmap.yaml").Apply()
    	if err != nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. pkg/config/xds/deprecated.go

    		wellknown.ExternalAuthorization:       "envoy.ext_authz",
    		wellknown.HTTPConnectionManager:       "envoy.http_connection_manager",
    		wellknown.MongoProxy:                  "envoy.mongo_proxy",
    		wellknown.RateLimit:                   "envoy.ratelimit",
    		wellknown.RedisProxy:                  "envoy.redis_proxy",
    		wellknown.TCPProxy:                    "envoy.tcp_proxy",
    	}
    
    	ReverseDeprecatedFilterNames = reverse(DeprecatedFilterNames)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/rate_limiters.go

    Alvaro Aleman <******@****.***> 1714321578 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top