Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for balancing (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/test/framework/components/echo/echotest/run.go

    // a particular source instance, as there should typically be one instance
    // per cluster for any deployment. However we do not identify a destination
    // cluster, as we expect most tests will cause load-balancing across all possible
    // clusters.
    func (t *T) Run(testFn oneToOneTest) {
    	t.rootCtx.Logf("Running tests with: sources %v -> destinations %v",
    		t.sources.Services().NamespacedNames().NamesWithNamespacePrefix(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/test/framework/components/echo/check/checkers.go

    //
    // For cases where all clusters are on the same network, verifies that each of the expected clusters was reached.
    //
    // For multi-network configurations, verifies the current (limited) Istio load balancing behavior when going through
    // a gateway. Ensures that all expected networks were reached, and that all clusters on the same network as the
    // client were reached.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. docs/de/docs/deployment/docker.md

    Diese verteilten Containerverwaltungssysteme wie Kubernetes verfügen normalerweise über eine integrierte Möglichkeit, die **Replikation von Containern** zu handhaben und gleichzeitig **Load Balancing** für die eingehenden Requests zu unterstützen. Alles auf **Cluster-Ebene**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:17 UTC 2024
    - 38.9K bytes
    - Viewed (0)
Back to top