Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maxEjectionPercent (0.21 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    true type: integer consecutiveLocalOrig: description: The number of consecutive locally originated failures before ejection occurs. nullable: true type: integer interval: description: Time interval between ejection sweep analysis. type: string maxEjectionPercent: description: Maximum % of hosts in the load balancing pool for the upstream service that can be ejected. format: int32 type: integer minHealthPercent: description: Outlier detection will be enabled as long as the associated load balancing pool...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  2. 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)
  3. 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