Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for outlier_detection (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top