Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for outlierDetection (0.18 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    						OutlierDetection: &networking.OutlierDetection{
    							ConsecutiveErrors: 5,
    						},
    					},
    				},
    			},
    			expectedLabels: nil,
    		},
    		{
    			name: "failover priority disabled",
    			dr: &config.Config{
    				Spec: &networking.DestinationRule{
    					TrafficPolicy: &networking.TrafficPolicy{
    						OutlierDetection: &networking.OutlierDetection{
    							ConsecutiveErrors: 5,
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util_test.go

    					},
    				},
    				OutlierDetection: &networking.OutlierDetection{
    					ConsecutiveErrors: 20,
    				},
    				PortLevelSettings: []*networking.TrafficPolicy_PortTrafficPolicy{
    					{
    						Port: &networking.PortSelector{
    							Number: 8080,
    						},
    						OutlierDetection: &networking.OutlierDetection{
    							ConsecutiveErrors: 15,
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    	*networking.ConnectionPoolSettings,
    	*networking.OutlierDetection,
    	*networking.LoadBalancerSettings,
    	*networking.ClientTLSSettings,
    	*networking.TrafficPolicy_ProxyProtocol,
    ) {
    	if policy == nil {
    		return nil, nil, nil, nil, nil
    	}
    	connectionPool := policy.ConnectionPool
    	outlierDetection := policy.OutlierDetection
    	loadBalancer := policy.LoadBalancer
    	tls := policy.Tls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. tests/testdata/config/destination-rule-locality.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: locality
      namespace: default
    spec:
      host: locality.cluster.local
      trafficPolicy:
        outlierDetection:
          interval: 1s
          baseEjectionTime: 3m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 263 bytes
    - Viewed (0)
  5. tests/testdata/config/destination-rule-all.yaml

          tcp:
            maxConnections: 99
            connectTimeout: 6s
          http:
            http2MaxRequests: 33
            maxRequestsPerConnection: 65
            maxRetries: 4
            http1MaxPendingRequests: 14
        outlierDetection:
            interval: 8ms
            baseEjectionTime: 1m
            maxEjectionPercent: 11
        tls:
          mode: DISABLE
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. releasenotes/notes/failover-validation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Added** warning validation messages when a DestinationRule specifies failover policies but does not provide an OutlierDetection policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 15:45:22 UTC 2022
    - 293 bytes
    - Viewed (0)
  7. 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)
  8. pkg/config/validation/agent/validation_test.go

    		}
    	}
    }
    
    func TestValidateLocalityLbSetting(t *testing.T) {
    	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)
  9. istioctl/pkg/describe/describe_test.go

    							},
    							ConnectionPool:   &v1alpha32.ConnectionPoolSettings{Tcp: &v1alpha32.ConnectionPoolSettings_TCPSettings{MaxConnections: 10}},
    							OutlierDetection: &v1alpha32.OutlierDetection{MinHealthPercent: 10},
    							Tls:              &v1alpha32.ClientTLSSettings{Mode: v1alpha32.ClientTLSSettings_ISTIO_MUTUAL},
    							PortLevelSettings: []*v1alpha32.TrafficPolicy_PortTrafficPolicy{
    								{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top