Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 461 for outlier (0.33 sec)

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

    	}
    	if outlier.MaxEjectionPercent > 0 {
    		out.MaxEjectionPercent = &wrapperspb.UInt32Value{Value: uint32(outlier.MaxEjectionPercent)}
    	}
    
    	if outlier.SplitExternalLocalOriginErrors {
    		out.SplitExternalLocalOriginErrors = true
    		if outlier.ConsecutiveLocalOriginFailures.GetValue() > 0 {
    			out.ConsecutiveLocalOriginFailure = &wrapperspb.UInt32Value{Value: outlier.ConsecutiveLocalOriginFailures.Value}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. releasenotes/notes/56781.yaml

    area: installation
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. pkg/config/validation/agent/validation_test.go

    	cases := []struct {
    		name    string
    		in      *networking.LocalityLoadBalancerSetting
    		outlier *networking.OutlierDetection
    		err     bool
    		warn    bool
    	}{
    		{
    			name:    "valid mesh config without LocalityLoadBalancerSetting",
    			in:      nil,
    			outlier: nil,
    			err:     false,
    			warn:    false,
    		},
    
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    								FailoverPriority: []string{
    									"a",
    									"b",
    								},
    							},
    						},
    					},
    				},
    			},
    			expectedLabels: []byte("a:a b:b "),
    		},
    		{
    			name: "no outlier detection",
    			dr: &config.Config{
    				Spec: &networking.DestinationRule{
    					TrafficPolicy: &networking.TrafficPolicy{
    						LoadBalancer: &networking.LoadBalancerSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. releasenotes/notes/28942.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 28970
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 03 16:45:33 UTC 2020
    - 185 bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe_test.go

       Matching subsets: 
          (Non-matching subsets v1)
       Traffic Policy TLS Mode: ISTIO_MUTUAL
       Policies: load balancer/connection pool/outlier detection
       Port Level Settings:
        8080:
          TLS Mode: DISABLE
          Policies: load balancer/connection pool/outlier detection
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	}
    	return
    }
    
    func validateOutlierDetection(outlier *networking.OutlierDetection) (errs Validation) {
    	if outlier == nil {
    		return
    	}
    
    	if outlier.BaseEjectionTime != nil {
    		errs = AppendValidation(errs, agent.ValidateDuration(outlier.BaseEjectionTime))
    	}
    	// nolint: staticcheck
    	if outlier.ConsecutiveErrors != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			execClientConfig: loggingConfig,
    			args:             strings.Split("endpoint httpbin-794b576b6c-qx6pf", " "),
    			expectedString:   `ENDPOINT     STATUS     OUTLIER CHECK     CLUSTER`,
    			wantException:    false,
    		},
    		{ // supplying valid pod name retrieves Envoy config (fails because we don't check in Envoy config unit tests)
    			execClientConfig: loggingConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/eds_test.go

    	// No outlier detection specified for this cluster, so we shouldn't apply priority.
    	verifyNoLocalityPriorities(endpoints1["outbound|80||locality-no-outlier-detection.cluster.local"].GetEndpoints(), t)
    	verifyNoLocalityPriorities(endpoints2["outbound|80||locality-no-outlier-detection.cluster.local"].GetEndpoints(), t)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation.go

    	}
    
    	errs = AppendValidation(errs, validateLocalities(srcLocalities))
    
    	if (len(lb.GetFailover()) != 0 || len(lb.GetFailoverPriority()) != 0) && outlier == nil {
    		errs = AppendValidation(errs, WrapWarning(fmt.Errorf("outlier detection policy must be provided for failover")))
    	}
    
    	for _, failover := range lb.GetFailover() {
    		if failover.From == failover.To {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top