Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for balancing (0.11 sec)

  1. pilot/pkg/networking/core/cluster_waypoint.go

    	// Creates "main_internal" cluster to route to the main internal listener.
    	// Creates "encap" cluster to route to the encap listener.
    	clusters = append(clusters, MainInternalCluster, EncapCluster)
    	// Creates per-VIP load balancing upstreams.
    	clusters = append(clusters, cb.buildWaypointInboundVIP(proxy, svcs)...)
    	// Upstream of the "encap" listener.
    	clusters = append(clusters, cb.buildWaypointConnectOriginate(proxy, push))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/ep_filters.go

    			// If the proxy can't view the network for this endpoint, exclude it entirely.
    			if !b.proxyView.IsVisible(istioEndpoint) {
    				continue
    			}
    
    			// Copy the endpoint in order to expand the load balancing weight.
    			// When multiplying, be careful to avoid overflow - clipping the
    			// result at the maximum value for uint32.
    			weight := b.scaleEndpointLBWeight(lbEp, scaleFactor)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pilot/pkg/features/experimental.go

    	SendUnhealthyEndpoints = atomic.NewBool(env.Register(
    		"PILOT_SEND_UNHEALTHY_ENDPOINTS",
    		false,
    		"If enabled, Pilot will include unhealthy endpoints in EDS pushes and even if they are sent Envoy does not use them for load balancing."+
    			"  To avoid, sending traffic to non ready endpoints, enabling this flag, disables panic threshold in Envoy i.e. Envoy does not load balance requests"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/config/constants/constants.go

    	DefaultClusterLocalDomain = "cluster.local"
    
    	// DefaultClusterSetLocalDomain is the default domain suffix for Kubernetes Multi-Cluster Services (MCS)
    	// used for load balancing requests against endpoints across the ClusterSet (i.e. mesh).
    	DefaultClusterSetLocalDomain = "clusterset.local"
    
    	// DefaultClusterName is the default cluster name
    	DefaultClusterName = "Kubernetes"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/xds/ads.go

    	"istio.io/istio/pkg/xds"
    )
    
    var (
    	log = xds.Log
    
    	// Tracks connections, increment on each new connection.
    	connectionNumber = int64(0)
    )
    
    // Used only when running in KNative, to handle the load balancing behavior.
    var firstRequest = uatomic.NewBool(true)
    
    var knativeEnv = env.Register("K_REVISION", "",
    	"KNative revision, set if running in knative").Get()
    
    // DiscoveryStream is a server interface for XDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. pilot/pkg/features/pilot.go

    			"all traffic on that port will be matched, which can have disastrous consequences. Additionally, the destination is seen as an opaque destination; "+
    			"even if it is another service in the mesh, policies such as mTLS and load balancing will not be used when connecting to it.").Get()
    
    	ValidateWorkloadEntryIdentity = env.Register("ISTIO_WORKLOAD_ENTRY_VALIDATE_IDENTITY", true,
    		"If enabled, will validate the identity of a workload matches the identity of the "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/service.go

    	// Resolution indicates how the service instances need to be resolved before routing
    	// traffic. Most services in the service registry will use static load balancing wherein
    	// the proxy will decide the service instance that will receive the traffic. Service entries
    	// could either use DNS load balancing (i.e. proxy will query DNS server for the IP of the service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.proto

      repeated string subject_alt_names = 6;
      // Waypoint is the waypoint proxy for this service. When set, all incoming requests must go
      // through the waypoint.
      GatewayAddress waypoint = 7;
    
      // Load balancing policy for selecting endpoints.
      // Note: this applies only to connecting directly to the workload; when waypoints are used, the waypoint's load_balancing
      // configuration is used.
      LoadBalancing load_balancing = 8;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. tests/integration/security/reachability_test.go

    					toMatch:    match.And(match.NotVM, notMigration),
    					expectMTLS: notNaked,
    					// Since we are doing pass-through, all requests will stay in the same cluster,
    					// as we are bypassing Istio load balancing.
    					// TODO(https://github.com/istio/istio/issues/39700): Why does headless behave differently?
    					expectCrossCluster: and(notFromNaked, or(toHeadless, toStatefulSet)),
    					expectCrossNetwork: never,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. pkg/controlplane/instance.go

    	if cfg.Extra.ServiceNodePortRange.Size == 0 {
    		// TODO: Currently no way to specify an empty range (do we need to allow this?)
    		// We should probably allow this for clouds that don't require NodePort to do load-balancing (GCE)
    		// but then that breaks the strict nestedness of ServiceType.
    		// Review post-v1
    		cfg.Extra.ServiceNodePortRange = kubeoptions.DefaultServiceNodePortRange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top