Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for maxEjectionPercent (0.45 sec)

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

    		out.Interval = outlier.Interval
    	}
    	if outlier.BaseEjectionTime != nil {
    		out.BaseEjectionTime = outlier.BaseEjectionTime
    	}
    	if outlier.MaxEjectionPercent > 0 {
    		out.MaxEjectionPercent = &wrapperspb.UInt32Value{Value: uint32(outlier.MaxEjectionPercent)}
    	}
    
    	if outlier.SplitExternalLocalOriginErrors {
    		out.SplitExternalLocalOriginErrors = true
    		if outlier.ConsecutiveLocalOriginFailures.GetValue() > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  - message: must be a valid duration greater than 1ms
                                    rule: duration(self) >= duration('1ms')
                                maxEjectionPercent:
                                  description: Maximum % of hosts in the load balancing
                                    pool for the upstream service that can be ejected.
                                  format: int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  3. manifests/charts/base/crds/crd-all.gen.yaml

                                  - message: must be a valid duration greater than 1ms
                                    rule: duration(self) >= duration('1ms')
                                maxEjectionPercent:
                                  description: Maximum % of hosts in the load balancing
                                    pool for the upstream service that can be ejected.
                                  format: int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    		warn  bool
    	}{
    		{name: "valid outlier detection", in: &networking.OutlierDetection{
    			Interval:           &durationpb.Duration{Seconds: 2},
    			BaseEjectionTime:   &durationpb.Duration{Seconds: 2},
    			MaxEjectionPercent: 50,
    		}, valid: true},
    
    		{
    			name: "invalid outlier detection, bad interval", in: &networking.OutlierDetection{
    				Interval: &durationpb.Duration{Seconds: 2, Nanos: 5},
    			},
    			valid: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	}
    	if outlier.Interval != nil {
    		errs = AppendValidation(errs, agent.ValidateDuration(outlier.Interval))
    	}
    	errs = AppendValidation(errs, ValidatePercent(outlier.MaxEjectionPercent), ValidatePercent(outlier.MinHealthPercent))
    
    	return
    }
    
    func validateConnectionPool(settings *networking.ConnectionPoolSettings) (errs error) {
    	if settings == nil {
    		return
    	}
    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