Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for lb_policy (0.11 sec)

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

        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: ADD
          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 Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pilot/pkg/model/conversion_test.go

    	destinationRuleSchema := collections.DestinationRule
    
    	msg := &networking.DestinationRule{
    		Host: "something.svc.local",
    		TrafficPolicy: &networking.TrafficPolicy{
    			LoadBalancer: &networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_Simple{},
    			},
    		},
    		Subsets: []*networking.Subset{
    			{
    				Name: "foo",
    				Labels: map[string]string{
    					"test": "label",
    				},
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    		},
    		StaticResources: &envoy_bootstrap.Bootstrap_StaticResources{
    			Listeners: []*envoy_listener.Listener{},
    			Clusters: []*envoy_cluster.Cluster{
    				{
    					Name:     "dynamic_forward_proxy_cluster",
    					LbPolicy: envoy_cluster.Cluster_CLUSTER_PROVIDED,
    					ClusterDiscoveryType: &envoy_cluster.Cluster_ClusterType{
    						ClusterType: &envoy_cluster.Cluster_CustomClusterType{
    							Name: "envoy.clusters.dynamic_forward_proxy",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_waypoint.go

    	sec_model.EnforceCompliance(ctx)
    	return &cluster.Cluster{
    		Name:                          ConnectOriginate,
    		ClusterDiscoveryType:          &cluster.Cluster_Type{Type: cluster.Cluster_ORIGINAL_DST},
    		LbPolicy:                      cluster.Cluster_CLUSTER_PROVIDED,
    		ConnectTimeout:                durationpb.New(2 * time.Second),
    		CleanupInterval:               durationpb.New(60 * time.Second),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/cds.go

    	switch policy.GetLoadBalancer().GetSimple() {
    	case networking.LoadBalancerSettings_ROUND_ROBIN, networking.LoadBalancerSettings_UNSPECIFIED:
    	// ok
    	default:
    		log.Warnf("cannot apply LbPolicy %s to %s", policy.LoadBalancer.GetSimple(), b.node.ID)
    	}
    	corexds.ApplyRingHashLoadBalancer(c, policy.GetLoadBalancer())
    }
    
    func (b *clusterBuilder) applyTLS(c *cluster.Cluster, policy *networking.TrafficPolicy) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top