Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for FAILOVER (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/workloadapi/workload.proto

        // even if there are endpoints outside of the preferences.
        STRICT = 1;
        // In FAILOVER mode, endpoint selection will prefer endpoints that match all preferences, but failover to groups of endpoints
        // that match less (or, eventually, none) preferences.
        // For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. manifests/charts/base/crds/crd-all.gen.yaml

                                      nullable: true
                                      type: boolean
                                    failover:
                                      description: 'Optional: only one of distribute,
                                        failover or failoverPriority can be set.'
                                      items:
                                        properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      nullable: true
                                      type: boolean
                                    failover:
                                      description: 'Optional: only one of distribute,
                                        failover or failoverPriority can be set.'
                                      items:
                                        properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
Back to top