Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 183 for outlier (0.29 sec)

  1. pilot/pkg/networking/core/cluster_traffic_policy.go

    	}
    	if outlier.MaxEjectionPercent > 0 {
    		out.MaxEjectionPercent = &wrapperspb.UInt32Value{Value: uint32(outlier.MaxEjectionPercent)}
    	}
    
    	if outlier.SplitExternalLocalOriginErrors {
    		out.SplitExternalLocalOriginErrors = true
    		if outlier.ConsecutiveLocalOriginFailures.GetValue() > 0 {
    			out.ConsecutiveLocalOriginFailure = &wrapperspb.UInt32Value{Value: outlier.ConsecutiveLocalOriginFailures.Value}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation_test.go

    	cases := []struct {
    		name    string
    		in      *networking.LocalityLoadBalancerSetting
    		outlier *networking.OutlierDetection
    		err     bool
    		warn    bool
    	}{
    		{
    			name:    "valid mesh config without LocalityLoadBalancerSetting",
    			in:      nil,
    			outlier: nil,
    			err:     false,
    			warn:    false,
    		},
    
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe_test.go

       Matching subsets: 
          (Non-matching subsets v1)
       Traffic Policy TLS Mode: ISTIO_MUTUAL
       Policies: load balancer/connection pool/outlier detection
       Port Level Settings:
        8080:
          TLS Mode: DISABLE
          Policies: load balancer/connection pool/outlier detection
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/eds_test.go

    	// No outlier detection specified for this cluster, so we shouldn't apply priority.
    	verifyNoLocalityPriorities(endpoints1["outbound|80||locality-no-outlier-detection.cluster.local"].GetEndpoints(), t)
    	verifyNoLocalityPriorities(endpoints2["outbound|80||locality-no-outlier-detection.cluster.local"].GetEndpoints(), t)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/validation.go

    	}
    
    	errs = AppendValidation(errs, validateLocalities(srcLocalities))
    
    	if (len(lb.GetFailover()) != 0 || len(lb.GetFailoverPriority()) != 0) && outlier == nil {
    		errs = AppendValidation(errs, WrapWarning(fmt.Errorf("outlier detection policy must be provided for failover")))
    	}
    
    	for _, failover := range lb.GetFailover() {
    		if failover.From == failover.To {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    		return
    	}
    
    	// one of Distribute or Failover settings can be applied.
    	if localityLB.GetDistribute() != nil {
    		applyLocalityWeights(locality, loadAssignment, localityLB.GetDistribute())
    		// Failover needs outlier detection, otherwise Envoy will never drop down to a lower priority.
    		// Do not apply default failover when locality LB is disabled.
    	} else if enableFailover && (localityLB.Enabled == nil || localityLB.Enabled.Value) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/app/cmd.go

    	proxyCmd.PersistentFlags().StringVar(&proxyArgs.TemplateFile, "templateFile", "",
    		"Go template bootstrap config")
    	proxyCmd.PersistentFlags().StringVar(&proxyArgs.OutlierLogPath, "outlierLogPath", "",
    		"The log path for outlier detection")
    	proxyCmd.PersistentFlags().BoolVar(&proxyArgs.EnableProfiling, "profiling", true,
    		"Enable profiling via web interface host:port/debug/pprof/.")
    }
    
    func initStatusServer(
    	ctx context.Context,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. istioctl/pkg/validate/validate_test.go

    			wantError:      true,
    		},
    		{
    			name: "warning",
    			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)
  9. src/go/printer/testdata/declarations.golden

    	// mixed key sizes: align when key sizes change within accepted ratio
    	abcdefgh:		a,
    	abcdefghabcdefg:	a,
    	abcdefghij:		a,
    	abcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij:	a,	// outlier - do not align with previous line
    	abcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij:		a,	// align with previous line
    
    	ab:	a,	// do not align with previous line
    	abcde:	a,	// align with previous line
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  10. pkg/model/proxy.go

    	PilotSubjectAltName []string `json:"PILOT_SAN,omitempty"`
    
    	// XDSRootCert defines the root cert to use for XDS connections
    	XDSRootCert string `json:"-"`
    
    	// OutlierLogPath is the cluster manager outlier event log path.
    	OutlierLogPath string `json:"OUTLIER_LOG_PATH,omitempty"`
    
    	// AppContainers is the list of containers in the pod.
    	AppContainers string `json:"APP_CONTAINERS,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top