Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for balancing (0.14 sec)

  1. pkg/config/validation/validation_test.go

    		valid bool
    	}{
    		{
    			name: "valid load balancer with simple load balancing", in: &networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_Simple{
    					Simple: networking.LoadBalancerSettings_ROUND_ROBIN,
    				},
    			},
    			valid: true,
    		},
    
    		{
    			name: "valid load balancer with consistentHash load balancing", in: &networking.LoadBalancerSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    							headlessTarget := match.Headless.Any(to)
    							if !headlessTarget && len(toClusters.ByNetwork()[fromCluster.NetworkName()]) > 1 {
    								// Conditionally check reached clusters to work around connection load balancing issues
    								// See https://github.com/istio/istio/issues/32208 for details
    								// We want to skip this for requests from the cross-network pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

        --region "${REGION}" \
        --protocol tcp \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --health-checks "${MASTER_NAME}-hc"
    
      gcloud compute forwarding-rules create "${MASTER_NAME}-internal" \
        --project "${PROJECT}" \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --network "${NETWORK}" \
        --subnet "${SUBNETWORK}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    	return
    }
    
    func validateLoadBalancer(settings *networking.LoadBalancerSettings, outlier *networking.OutlierDetection) (errs Validation) {
    	if settings == nil {
    		return
    	}
    
    	// simple load balancing is always valid
    	consistentHash := settings.GetConsistentHash()
    	if consistentHash != nil {
    		httpCookie := consistentHash.GetHttpCookie()
    		if httpCookie != nil && httpCookie.GetName() == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top