Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for outlier_detection (0.24 sec)

  1. pilot/pkg/networking/util/util.go

    	if subsetPolicy.ConnectionPool != nil || hasPortLevel {
    		mergedPolicy.ConnectionPool = subsetPolicy.ConnectionPool
    	}
    	if subsetPolicy.OutlierDetection != nil || hasPortLevel {
    		mergedPolicy.OutlierDetection = subsetPolicy.OutlierDetection
    	}
    	if subsetPolicy.LoadBalancer != nil || hasPortLevel {
    		mergedPolicy.LoadBalancer = subsetPolicy.LoadBalancer
    	}
    	if subsetPolicy.Tls != nil || hasPortLevel {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K 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. tests/integration/pilot/locality_test.go

      host: {{.Host}}
      trafficPolicy:
        connectionPool:
          tcp:
            connectTimeout: 250ms
        loadBalancer:
          simple: ROUND_ROBIN
          localityLbSetting:
    {{.LocalitySetting | indent 8 }}
        outlierDetection:
          interval: 1s
          baseEjectionTime: 10m
          maxEjectionPercent: 100`
    
    type LocalityInput struct {
    	LocalitySetting string
    	Host            string
    	Resolution      string
    	Local           string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    					ps.LoadBalancer,
    					ps.ConnectionPool,
    					ps.OutlierDetection); sp != "" {
    					fmt.Fprintf(writer, "%s%s", printSpaces(initPrintNum+printLevel2), sp)
    				}
    			}
    		}
    	}
    }
    
    func recordShortPolicies(lb *v1alpha3.LoadBalancerSettings,
    	connectionPool *v1alpha3.ConnectionPoolSettings,
    	outlierDetection *v1alpha3.OutlierDetection,
    ) string {
    	extra := make([]string, 0)
    	if lb != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    						MaxRetries: 33,
    					},
    					Tcp: &networking.ConnectionPoolSettings_TCPSettings{
    						ConnectTimeout: &durationpb.Duration{Seconds: 33},
    					},
    				},
    				OutlierDetection: &networking.OutlierDetection{
    					Consecutive_5XxErrors: &wrapperspb.UInt32Value{Value: 3},
    				},
    				Tls: &networking.ClientTLSSettings{
    					Mode: networking.ClientTLSSettings_SIMPLE,
    				},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/xds/ads_test.go

    			Namespace:        "default",
    			GroupVersionKind: gvk.DestinationRule,
    		},
    		Spec: &networking.DestinationRule{
    			Host: "foo.com",
    			TrafficPolicy: &networking.TrafficPolicy{
    				OutlierDetection: &networking.OutlierDetection{},
    			},
    		},
    	}); err != nil {
    		t.Fatal(err)
    	}
    	if _, err := ads.Wait(time.Second*5, v3.EndpointType); err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation.go

    	}
    
    	return nil
    }
    
    // ValidateLocalityLbSetting checks the LocalityLbSetting of MeshConfig
    func ValidateLocalityLbSetting(lb *networking.LocalityLoadBalancerSetting, outlier *networking.OutlierDetection) (errs Validation) {
    	if lb == nil {
    		return
    	}
    
    	if len(lb.GetDistribute()) > 0 && len(lb.GetFailover()) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. istioctl/pkg/validate/validate_test.go

    `
    	warnDestinationRule = `apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: reviews-cb-policy
    spec:
      host: reviews.prod.svc.cluster.local
      trafficPolicy:
        outlierDetection:
          consecutiveErrors: 7
    `
    	invalidYAML = `
    (...!)`
    	validKubernetesYAML = `
    apiVersion: v1
    kind: Namespace
    metadata:
      name: istio-system
    `
    	validKubernetesJSON = `{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar_test.go

    						MaxRetries: 33,
    					},
    					Tcp: &networking.ConnectionPoolSettings_TCPSettings{
    						ConnectTimeout: &durationpb.Duration{Seconds: 33},
    					},
    				},
    				OutlierDetection: &networking.OutlierDetection{
    					Consecutive_5XxErrors: &wrapperspb.UInt32Value{Value: 3},
    				},
    			},
    		},
    	}
    	mergedDr1and3 = config.Config{
    		Meta: config.Meta{
    			Name:      "drRule1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top