Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for lb_policy (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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