Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for maxEjectionPercent (0.43 sec)

  1. tests/testdata/config/destination-rule-locality.yaml

    kind: DestinationRule
    metadata:
      name: locality
      namespace: default
    spec:
      host: locality.cluster.local
      trafficPolicy:
        outlierDetection:
          interval: 1s
          baseEjectionTime: 3m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 263 bytes
    - Viewed (0)
  2. 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)
  3. tests/testdata/config/destination-rule-all.yaml

            http2MaxRequests: 33
            maxRequestsPerConnection: 65
            maxRetries: 4
            http1MaxPendingRequests: 14
        outlierDetection:
            interval: 8ms
            baseEjectionTime: 1m
            maxEjectionPercent: 11
        tls:
          mode: DISABLE
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
            version: v2
          trafficPolicy:
            loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. 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)
  5. tests/integration/pilot/locality_test.go

            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
    	Remote          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)
  6. 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)
  7. 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)
  8. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top