Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SplitExternalLocalOriginErrors (0.4 sec)

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

    	}
    	if outlier.MaxEjectionPercent > 0 {
    		out.MaxEjectionPercent = &wrapperspb.UInt32Value{Value: uint32(outlier.MaxEjectionPercent)}
    	}
    
    	if outlier.SplitExternalLocalOriginErrors {
    		out.SplitExternalLocalOriginErrors = true
    		if outlier.ConsecutiveLocalOriginFailures.GetValue() > 0 {
    			out.ConsecutiveLocalOriginFailure = &wrapperspb.UInt32Value{Value: outlier.ConsecutiveLocalOriginFailures.Value}
    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

                                    min_health_percent hosts in healthy mode.
                                  format: int32
                                  type: integer
                                splitExternalLocalOriginErrors:
                                  description: Determines whether to distinguish local
                                    origin failures from external errors.
                                  type: boolean
    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

                                    min_health_percent hosts in healthy mode.
                                  format: int32
                                  type: integer
                                splitExternalLocalOriginErrors:
                                  description: Determines whether to distinguish local
                                    origin failures from external errors.
                                  type: boolean
    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. pilot/pkg/networking/core/cluster_test.go

    		},
    		{
    			"Local origin errors is enabled",
    			&networking.OutlierDetection{
    				SplitExternalLocalOriginErrors: true,
    				ConsecutiveLocalOriginFailures: &wrappers.UInt32Value{Value: 10},
    			},
    			&cluster.OutlierDetection{
    				EnforcingSuccessRate:                   &wrappers.UInt32Value{Value: 0},
    				SplitExternalLocalOriginErrors:         true,
    				ConsecutiveLocalOriginFailure:          &wrappers.UInt32Value{Value: 10},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                    min_health_percent hosts in healthy mode.
                                  format: int32
                                  type: integer
                                splitExternalLocalOriginErrors:
                                  description: Determines whether to distinguish local
                                    origin failures from external errors.
                                  type: boolean
    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

    		scope.Warnf(warn)
    		errs = AppendValidation(errs, WrapWarning(errors.New(warn)))
    	}
    	if !outlier.SplitExternalLocalOriginErrors && outlier.ConsecutiveLocalOriginFailures.GetValue() > 0 {
    		err := "outlier detection consecutive local origin failures is specified, but split external local origin errors is set to false"
    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