Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for consecutiveGatewayErrors (0.41 sec)

  1. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_traffic_policy.go

    		out.Consecutive_5Xx = &wrapperspb.UInt32Value{Value: v}
    
    		if v > 0 {
    			v = 100
    		}
    		out.EnforcingConsecutive_5Xx = &wrapperspb.UInt32Value{Value: v}
    	}
    	if e := outlier.ConsecutiveGatewayErrors; e != nil {
    		v := e.GetValue()
    
    		out.ConsecutiveGatewayFailure = &wrapperspb.UInt32Value{Value: v}
    
    		if v > 0 {
    			v = 100
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. istioctl/pkg/validate/validate_test.go

    			args: []string{"--filename", warningFilename},
    			expectedRegexp: regexp.MustCompile(`(?m)".*" has warnings: 
    	\* DestinationRule//reviews-cb-policy: outlier detection consecutive errors is deprecated, use consecutiveGatewayErrors or consecutive5xxErrors instead
    
    Error: 1 error occurred:
    	\* VirtualService//invalid-virtual-service: weight -15 < 0`),
    			wantError: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    			},
    		},
    		{
    			"Consecutive gateway and 5xx errors are set",
    			&networking.OutlierDetection{
    				Consecutive_5XxErrors:    &wrappers.UInt32Value{Value: 4},
    				ConsecutiveGatewayErrors: &wrappers.UInt32Value{Value: 3},
    			},
    			&cluster.OutlierDetection{
    				Consecutive_5Xx:                    &wrappers.UInt32Value{Value: 4},
    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. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  type: integer
                                consecutiveErrors:
                                  format: int32
                                  type: integer
                                consecutiveGatewayErrors:
                                  description: Number of gateway errors before a host
                                    is ejected from the connection pool.
                                  maximum: 4294967295
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                  type: integer
                                consecutiveErrors:
                                  format: int32
                                  type: integer
                                consecutiveGatewayErrors:
                                  description: Number of gateway errors before a host
                                    is ejected from the connection pool.
                                  maximum: 4294967295
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                  type: integer
                                consecutiveErrors:
                                  format: int32
                                  type: integer
                                consecutiveGatewayErrors:
                                  description: Number of gateway errors before a host
                                    is ejected from the connection pool.
                                  nullable: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		errs = AppendValidation(errs, agent.ValidateDuration(outlier.BaseEjectionTime))
    	}
    	// nolint: staticcheck
    	if outlier.ConsecutiveErrors != 0 {
    		warn := "outlier detection consecutive errors is deprecated, use consecutiveGatewayErrors or consecutive5xxErrors instead"
    		scope.Warnf(warn)
    		errs = AppendValidation(errs, WrapWarning(errors.New(warn)))
    	}
    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