Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for FAILOVER (0.12 sec)

  1. 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)
  2. releasenotes/notes/failover-priority-lb.yaml

    Zhonghu Xu <******@****.***> 1629874146 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 25 06:49:06 UTC 2021
    - 258 bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    			// Apply user defined priority failover settings.
    			applyFailoverPriorities(loadAssignment, wrappedLocalityLbEndpoints, proxyLabels, localityLB.FailoverPriority)
    			// If failover is expliciltly configured with failover priority, apply failover settings also.
    			if len(localityLB.Failover) != 0 {
    				applyLocalityFailover(locality, loadAssignment, localityLB.Failover)
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/endpoint_builder_test.go

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

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 166 bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation_test.go

    			name: "invalid failover dst contain '*' wildcard",
    			in: &networking.LocalityLoadBalancerSetting{
    				Failover: []*networking.LocalityLoadBalancerSetting_Failover{
    					{
    						From: "region1",
    						To:   "*",
    					},
    				},
    			},
    			outlier: &networking.OutlierDetection{},
    			err:     true,
    			warn:    false,
    		},
    		{
    			name: "invalid failover src contain '/' separator",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/locality_test.go

    				},
    				{
    					"Failover/CDS",
    					LocalityInput{
    						LocalitySetting: localityFailover,
    						Resolution:      "DNS",
    						Local:           "fake-should-fail.example.com",
    						NearLocal:       destA.Config().Service,
    						Remote:          destB.Config().Service,
    					},
    					expectAllTrafficTo(destA.Config().Service),
    				},
    				{
    					"Failover/EDS",
    					LocalityInput{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    		},
    		{
    			"both",
    			&networking.LocalityLoadBalancerSetting{},
    			&networking.LocalityLoadBalancerSetting{Failover: failover},
    			&networking.LocalityLoadBalancerSetting{Failover: failover},
    		},
    		{
    			"mesh disabled",
    			&networking.LocalityLoadBalancerSetting{Enabled: &wrappers.BoolValue{Value: false}},
    			nil,
    			nil,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation.go

    	}
    
    	for _, failover := range lb.GetFailover() {
    		if failover.From == failover.To {
    			errs = AppendValidation(errs, fmt.Errorf("locality lb failover settings must specify different regions"))
    		}
    		if strings.Contains(failover.From, "/") || strings.Contains(failover.To, "/") {
    			errs = AppendValidation(errs, fmt.Errorf("locality lb failover only specify region"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. releasenotes/notes/locality-lb-docs.yaml

    releaseNotes:
      - |
        **Added** The locality load balancing docs have been re-written into a
        formal traffic management task. The new docs describe in more detail
        how locality load balancing works as well as how to configure both
        failover and weighted distribution. In addition, the new docs are now
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 15 22:52:39 UTC 2020
    - 420 bytes
    - Viewed (0)
Back to top