Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for baseEjectionTime (0.48 sec)

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

    		}
    		out.EnforcingConsecutiveGatewayFailure = &wrapperspb.UInt32Value{Value: v}
    	}
    
    	if outlier.Interval != nil {
    		out.Interval = outlier.Interval
    	}
    	if outlier.BaseEjectionTime != nil {
    		out.BaseEjectionTime = outlier.BaseEjectionTime
    	}
    	if outlier.MaxEjectionPercent > 0 {
    		out.MaxEjectionPercent = &wrapperspb.UInt32Value{Value: uint32(outlier.MaxEjectionPercent)}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. tests/integration/pilot/locality_test.go

          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
    	NearLocal       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)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    rule: duration(self) >= duration('1ms')
                              type: object
                            outlierDetection:
                              properties:
                                baseEjectionTime:
                                  description: Minimum ejection duration.
                                  type: string
                                  x-kubernetes-validations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                                    rule: duration(self) >= duration('1ms')
                              type: object
                            outlierDetection:
                              properties:
                                baseEjectionTime:
                                  description: Minimum ejection duration.
                                  type: string
                                  x-kubernetes-validations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                  type: string
                              type: object
                            outlierDetection:
                              properties:
                                baseEjectionTime:
                                  description: Minimum ejection duration.
                                  type: string
                                consecutive5xxErrors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    	}
    	return
    }
    
    func validateOutlierDetection(outlier *networking.OutlierDetection) (errs Validation) {
    	if outlier == nil {
    		return
    	}
    
    	if outlier.BaseEjectionTime != nil {
    		errs = AppendValidation(errs, agent.ValidateDuration(outlier.BaseEjectionTime))
    	}
    	// nolint: staticcheck
    	if outlier.ConsecutiveErrors != 0 {
    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. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    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: int32 type: integer consecutiveGatewayEr:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    		in    *networking.OutlierDetection
    		valid bool
    		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{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top