Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for lb_policy (0.11 sec)

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

        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: REPLACE
          value: # cluster specification
            name: "lua_cluster"
            type: STRICT_DNS
            connect_timeout: 0.5s
            lb_policy: ROUND_ROBIN
            load_assignment:
              cluster_name: lua_cluster
              endpoints:
              - lb_endpoints:
                - endpoint:
                    address:
                      socket_address:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. pkg/envoy/testdata/envoy_bootstrap_v2.tmpl.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 13 17:22:04 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. samples/bookinfo/policy/productpage_envoy_ratelimit.yaml

              service: ratelimit.default.svc.cluster.local
          patch:
            operation: ADD
            value:
              name: rate_limit_cluster
              type: STRICT_DNS
              connect_timeout: 10s
              lb_policy: ROUND_ROBIN
              http2_protocol_options: {}
              load_assignment:
                cluster_name: rate_limit_cluster
                endpoints:
                - lb_endpoints:
                  - endpoint:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 10 15:30:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

          patch:
            operation: ADD
            value:
              name: rate_limit_cluster
              type: STRICT_DNS
              connect_timeout: 10s
              lb_policy: ROUND_ROBIN
              http2_protocol_options: {}
              dns_refresh_rate: 500ms
              load_assignment:
                cluster_name: rate_limit_cluster
                endpoints:
                - lb_endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/none_cds.json

          "connect_timeout": 1000000000,
          "LbConfig": null
        },
        "PassthroughCluster": {
          "name": "PassthroughCluster",
          "type": 4,
          "connect_timeout": 1000000000,
          "lb_policy": 4,
          "LbConfig": null
        },
        "inbound|7070|tcplocal|s1tcp.none": {
          "name": "inbound|7070|tcplocal|s1tcp.none",
          "connect_timeout": 1000000000,
          "load_assignment": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  6. tools/packaging/common/gcp_envoy_bootstrap.json

               }
           }
          }
         ]
      },
      "static_resources": {
        "clusters": [
          {
            "name": "agent",
            "type": "STATIC",
            "connect_timeout": "0.250s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "agent",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/testdata/describe/http_config.json

                    "resource_api_version": "V3"
                  },
                  "service_name": "outbound|9080|v1|productpage.default.svc.cluster.local"
                },
                "connect_timeout": "10s",
                "lb_policy": "LEAST_REQUEST",
                "circuit_breakers": {
                  "thresholds": [
                    {
                      "max_connections": 4294967295,
                      "max_pending_requests": 4294967295,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    		{Name: "inbound|9999||mgmtCluster"},
    	}
    	sidecarInboundOut := []*cluster.Cluster{
    		{Name: "cluster1", DnsLookupFamily: cluster.Cluster_V6_ONLY, LbPolicy: cluster.Cluster_RING_HASH},
    	}
    
    	sidecarInboundServiceIn := []*cluster.Cluster{
    		{Name: "inbound|7443||", DnsLookupFamily: cluster.Cluster_V4_ONLY, LbPolicy: cluster.Cluster_ROUND_ROBIN},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. pkg/config/validation/envoyfilter/envoyfilter_test.go

    						},
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_ADD,
    						Value: &structpb.Struct{
    							Fields: map[string]*structpb.Value{
    								"lb_policy": {
    									Kind: &structpb.Value_StringValue{StringValue: "RING_HASH"},
    								},
    							},
    						},
    					},
    				},
    				{
    					ApplyTo: networking.EnvoyFilter_NETWORK_FILTER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_traffic_policy.go

    	if c.GetType() == cluster.Cluster_ORIGINAL_DST {
    		c.LbPolicy = cluster.Cluster_CLUSTER_PROVIDED
    		return
    	}
    
    	// Redis protocol must be defaulted with MAGLEV to benefit from client side sharding.
    	if features.EnableRedisFilter && port != nil && port.Protocol == protocol.Redis {
    		c.LbPolicy = cluster.Cluster_MAGLEV
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top