Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for outlier_detection (0.39 sec)

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

    	g := NewWithT(t)
    
    	tests := []struct {
    		name string
    		cfg  *networking.OutlierDetection
    		o    *cluster.OutlierDetection
    	}{
    		{
    			"Nil outlier detection",
    			nil,
    			nil,
    		},
    		{
    			"No outlier detection is set",
    			&networking.OutlierDetection{},
    			&cluster.OutlierDetection{
    				EnforcingSuccessRate: &wrappers.UInt32Value{Value: 0},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    				MaxEjectionPercent: 105,
    			},
    			valid: false,
    		},
    		{
    			name: "invalid outlier detection, panic threshold too low", in: &networking.OutlierDetection{
    				MinHealthPercent: -1,
    			},
    			valid: false,
    		},
    		{
    			name: "invalid outlier detection, panic threshold too high", in: &networking.OutlierDetection{
    				MinHealthPercent: 101,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    		return WrapError(fmt.Errorf("tunnel and proxyProtocol must not be set together"))
    	}
    
    	return AppendValidation(validateOutlierDetection(policy.OutlierDetection),
    		validateConnectionPool(policy.ConnectionPool),
    		validateLoadBalancer(policy.LoadBalancer, policy.OutlierDetection),
    		agent.ValidateTLS(policy.Tls),
    		validatePortTrafficPolicies(policy.PortLevelSettings),
    		validateTunnelSettings(policy.Tunnel),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    type: string type: array type: object simple: enum: - UNSPECIFIED - LEAST_CONN - RANDOM - PASSTHROUGH - ROUND_ROBIN - LEAST_REQUEST type: string warmupDurationSecs: description: Represents the warmup duration of Service. type: string type: object outlierDetection: properties: baseEjectionTime: description: Minimum ejection duration. type: string consecutive5xxErrors: description: Number of 5xx errors before a host is ejected from the connection pool. nullable: true type: integer consecutiveErrors: format:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top