Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for FAILOVER (0.26 sec)

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

    			g.Expect(localityLbEndpoint.LbEndpoints[0].LoadBalancingWeight.GetValue()).To(Equal(uint32(40)))
    		}
    	}
    
    	// Test failover
    	// failover locality loadbalancing setting
    	mesh = testMesh()
    	mesh.LocalityLbSetting = &networking.LocalityLoadBalancerSetting{Failover: []*networking.LocalityLoadBalancerSetting_Failover{}}
    
    	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)
  5. pkg/workloadapi/workload.pb.go

    	// even if there are endpoints outside of the preferences.
    	LoadBalancing_STRICT LoadBalancing_Mode = 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
    - 65.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    		return resp
    	}
    	resp += "/" + l.Zone
    	if l.SubZone == "" {
    		return resp
    	}
    	resp += "/" + l.SubZone
    	return resp
    }
    
    // GetFailoverPriorityLabels returns a byte array which contains failover priorities of the proxy.
    func GetFailoverPriorityLabels(proxyLabels map[string]string, priorities []string) []byte {
    	var b bytes.Buffer
    	for _, key := range priorities {
    		b.WriteString(key)
    		b.WriteRune(':')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	NodeLogQuery featuregate.Feature = "NodeLogQuery"
    
    	// owner: @xing-yang @sonasingh46
    	// kep: https://kep.k8s.io/2268
    	// alpha: v1.24
    	// beta: v1.26
    	// GA: v1.28
    	//
    	// Allow pods to failover to a different node in case of non graceful node shutdown
    	NodeOutOfServiceVolumeDetach featuregate.Feature = "NodeOutOfServiceVolumeDetach"
    
    	// owner: @iholder101 @kannon92
    	// kep: https://kep.k8s.io/2400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "DelayCacheUntilActive specifies when to start caching. If this is true and leader election is enabled, the scheduler will wait to fill informer caches until it is the leader. Doing so will have slower failover with the benefit of lower memory overhead while waiting to become leader. Defaults to false.",
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top