Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for minHealthPercent (0.51 sec)

  1. 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)
  2. pilot/pkg/networking/core/cluster_traffic_policy.go

    	minHealthPercent := outlier.MinHealthPercent
    	if minHealthPercent >= 0 {
    		// When we are sending unhealthy endpoints, we should disable Panic Threshold. Otherwise
    		// Envoy will send traffic to "Unready" pods when the percentage of healthy hosts fall
    		// below minimum health percentage.
    		if features.SendUnhealthyEndpoints.Load() {
    			minHealthPercent = 0
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe_test.go

    							},
    							ConnectionPool:   &v1alpha32.ConnectionPoolSettings{Tcp: &v1alpha32.ConnectionPoolSettings_TCPSettings{MaxConnections: 10}},
    							OutlierDetection: &v1alpha32.OutlierDetection{MinHealthPercent: 10},
    							Tls:              &v1alpha32.ClientTLSSettings{Mode: v1alpha32.ClientTLSSettings_ISTIO_MUTUAL},
    							PortLevelSettings: []*v1alpha32.TrafficPolicy_PortTrafficPolicy{
    								{
    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. pkg/config/validation/validation_test.go

    		},
    		{
    			name: "invalid outlier detection, panic threshold too low", in: &networking.OutlierDetection{
    				MinHealthPercent: -1,
    			},
    			valid: false,
    		},
    		{
    			name: "invalid outlier detection, panic threshold too high", in: &networking.OutlierDetection{
    				MinHealthPercent: 101,
    			},
    			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)
  5. pilot/pkg/networking/core/cluster_test.go

    }
    
    func TestDisablePanicThresholdAsDefault(t *testing.T) {
    	g := NewWithT(t)
    
    	outliers := []*networking.OutlierDetection{
    		// Unset MinHealthPercent
    		{},
    		// Explicitly set MinHealthPercent to 0
    		{
    			MinHealthPercent: 0,
    		},
    	}
    
    	for _, outlier := range outliers {
    		c := xdstest.ExtractCluster("outbound|8080||*.example.org",
    			buildTestClusters(clusterTest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    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 has at least
    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

                                    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 has at least
    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

                                    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 has at least
    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

    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 has at least min_health_percent hosts in healthy mode. format: int32 type: integer splitExternalLocalOr: description: Determines whether to distinguish...
    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.go

    	}
    	if outlier.Interval != nil {
    		errs = AppendValidation(errs, agent.ValidateDuration(outlier.Interval))
    	}
    	errs = AppendValidation(errs, ValidatePercent(outlier.MaxEjectionPercent), ValidatePercent(outlier.MinHealthPercent))
    
    	return
    }
    
    func validateConnectionPool(settings *networking.ConnectionPoolSettings) (errs error) {
    	if settings == nil {
    		return
    	}
    	if settings.Http == nil && settings.Tcp == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top