Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for outlier_detection (0.25 sec)

  1. pilot/pkg/xds/ads_test.go

    			Namespace:        "default",
    			GroupVersionKind: gvk.DestinationRule,
    		},
    		Spec: &networking.DestinationRule{
    			Host: "foo.com",
    			TrafficPolicy: &networking.TrafficPolicy{
    				OutlierDetection: &networking.OutlierDetection{},
    			},
    		},
    	}); err != nil {
    		t.Fatal(err)
    	}
    	if _, err := ads.Wait(time.Second*5, v3.EndpointType); err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation.go

    	}
    
    	return nil
    }
    
    // ValidateLocalityLbSetting checks the LocalityLbSetting of MeshConfig
    func ValidateLocalityLbSetting(lb *networking.LocalityLoadBalancerSetting, outlier *networking.OutlierDetection) (errs Validation) {
    	if lb == nil {
    		return
    	}
    
    	if len(lb.GetDistribute()) > 0 && len(lb.GetFailover()) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. istioctl/pkg/validate/validate_test.go

    `
    	warnDestinationRule = `apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: reviews-cb-policy
    spec:
      host: reviews.prod.svc.cluster.local
      trafficPolicy:
        outlierDetection:
          consecutiveErrors: 7
    `
    	invalidYAML = `
    (...!)`
    	validKubernetesYAML = `
    apiVersion: v1
    kind: Namespace
    metadata:
      name: istio-system
    `
    	validKubernetesJSON = `{
    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/model/sidecar_test.go

    						MaxRetries: 33,
    					},
    					Tcp: &networking.ConnectionPoolSettings_TCPSettings{
    						ConnectTimeout: &durationpb.Duration{Seconds: 33},
    					},
    				},
    				OutlierDetection: &networking.OutlierDetection{
    					Consecutive_5XxErrors: &wrapperspb.UInt32Value{Value: 3},
    				},
    			},
    		},
    	}
    	mergedDr1and3 = config.Config{
    		Meta: config.Meta{
    			Name:      "drRule1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/endpoint_builder.go

    	port := &model.Port{Port: portNumber}
    	policy := getSubsetTrafficPolicy(destinationRule, port, subsetName)
    	if policy != nil {
    		lbSettings = policy.LoadBalancer
    		if policy.OutlierDetection != nil {
    			outlierDetectionEnabled = true
    		}
    	}
    
    	return outlierDetectionEnabled, lbSettings
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K 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')
                              type: object
                            outlierDetection:
                              properties:
                                baseEjectionTime:
                                  description: Minimum ejection duration.
                                  type: string
    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')
                              type: object
                            outlierDetection:
                              properties:
                                baseEjectionTime:
                                  description: Minimum ejection duration.
                                  type: string
    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

                                  description: Represents the warmup duration of Service.
                                  type: string
                              type: object
                            outlierDetection:
                              properties:
                                baseEjectionTime:
                                  description: Minimum ejection duration.
                                  type: string
    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

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