Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for outlier_detection (0.17 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    						OutlierDetection: &networking.OutlierDetection{
    							ConsecutiveErrors: 5,
    						},
    					},
    				},
    			},
    			expectedLabels: nil,
    		},
    		{
    			name: "failover priority disabled",
    			dr: &config.Config{
    				Spec: &networking.DestinationRule{
    					TrafficPolicy: &networking.TrafficPolicy{
    						OutlierDetection: &networking.OutlierDetection{
    							ConsecutiveErrors: 5,
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. releasenotes/notes/failover-validation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Added** warning validation messages when a DestinationRule specifies failover policies but does not provide an OutlierDetection policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 15:45:22 UTC 2022
    - 293 bytes
    - Viewed (0)
  3. tests/testdata/config/destination-rule-locality.yaml

    apiVersion: networking.istio.io/v1alpha3
    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)
  4. tests/testdata/config/destination-rule-all.yaml

          tcp:
            maxConnections: 99
            connectTimeout: 6s
          http:
            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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. tests/integration/pilot/locality_test.go

      host: {{.Host}}
      trafficPolicy:
        connectionPool:
          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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top