Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for rate_limit (0.79 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/apis/grpc/ratelimit.go

    Katarzyna Lach <******@****.***> 1696583617 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 07:22:23 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. cluster/gce/manifests/glbc.manifest

        - --healthz-port=8086
        - --gce-ratelimit=ga.Operations.Get,qps,10,100
        - --gce-ratelimit=alpha.Operations.Get,qps,10,100
        - --gce-ratelimit=beta.Operations.Get,qps,10,100
        - --gce-ratelimit=ga.BackendServices.Get,qps,1.8,1
        - --gce-ratelimit=beta.BackendServices.Get,qps,1.8,1
        - --gce-ratelimit=ga.HealthChecks.Get,qps,1.8,1
        - --gce-ratelimit=alpha.HealthChecks.Get,qps,1.8,1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 10:40:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. pkg/wellknown/wellknown.go

    	// HTTPConnectionManager network filter
    	HTTPConnectionManager = "envoy.filters.network.http_connection_manager"
    	// TCPProxy network filter
    	TCPProxy = "envoy.filters.network.tcp_proxy"
    	// RateLimit network filter
    	RateLimit = "envoy.filters.network.ratelimit"
    	// MongoProxy network filter
    	MongoProxy = "envoy.filters.network.mongo_proxy"
    	// ThriftProxy network filter
    	ThriftProxy = "envoy.filters.network.thrift_proxy"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top