Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 426 for endpoints2 (0.27 sec)

  1. pkg/bootstrap/testdata/xdsproxy_golden.json

            "type": "STATIC",
            "connect_timeout": "0.250s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "prometheus_stats",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
                      "socket_address": {
                        "protocol": "TCP",
                        "address": "127.0.0.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    			}
    
    			for _, server := range test.servers {
    				endpoint, err := fakeReconciler.GetLease(server.id)
    				if err != nil {
    					t.Errorf("unexpected error: %v", err)
    				}
    				if endpoint != server.expectEndpoint {
    					t.Errorf("expected %v got: %v", server.expectEndpoint, endpoint)
    				}
    			}
    		})
    	}
    }
    
    func TestPeerLeaseRemoveEndpoints(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. pilot/pkg/trustbundle/trustbundle_test.go

    		{CertificateData: &meshconfig.MeshConfig_CertificateData_Pem{Pem: rootCACert}},
    	}})
    	if !slices.Equal(tb.endpoints, []string{server1.Listener.Addr().String()}) {
    		t.Errorf("server1 endpoint not correctly updated in trustbundle. Trustbundle endpoints: %v", tb.endpoints)
    	}
    	// Check server1's anchor has been added along with meshConfig pem cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    	if svc.Spec.TrafficDistribution != nil && *svc.Spec.TrafficDistribution == v1.ServiceTrafficDistributionPreferClose {
    		lb = &workloadapi.LoadBalancing{
    			// Prefer endpoints in close zones, but allow spilling over to further endpoints where required.
    			RoutingPreference: []workloadapi.LoadBalancing_Scope{
    				workloadapi.LoadBalancing_NETWORK,
    				workloadapi.LoadBalancing_REGION,
    				workloadapi.LoadBalancing_ZONE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_cache.go

    	dr := proxy.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, proxy, service.Hostname)
    	var eb *endpoints.EndpointBuilder
    	if service.Resolution == model.DNSLB || service.Resolution == model.DNSRoundRobinLB {
    		eb = endpoints.NewCDSEndpointBuilder(
    			proxy,
    			cb.req.Push,
    			clusterName,
    			model.TrafficDirectionOutbound, "", service.Hostname, port.Port,
    			service, dr,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    	SendUnhealthyEndpoints = atomic.NewBool(env.Register(
    		"PILOT_SEND_UNHEALTHY_ENDPOINTS",
    		false,
    		"If enabled, Pilot will include unhealthy endpoints in EDS pushes and even if they are sent Envoy does not use them for load balancing."+
    			"  To avoid, sending traffic to non ready endpoints, enabling this flag, disables panic threshold in Envoy i.e. Envoy does not load balance requests"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    		},
    	}
    
    	sortEndpoints := func(endpoints []*endpoint.LocalityLbEndpoints) {
    		sort.SliceStable(endpoints, func(i, j int) bool {
    			if strings.Compare(endpoints[i].Locality.Region, endpoints[j].Locality.Region) < 0 {
    				return true
    			}
    			if strings.Compare(endpoints[i].Locality.Zone, endpoints[j].Locality.Zone) < 0 {
    				return true
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  8. cmd/server-startup-msg.go

    	if err != nil {
    		h = host
    	}
    	ip := net.ParseIP(h)
    	return ip.To16() != nil && ip.To4() == nil
    }
    
    // strip api endpoints list with standard ports such as
    // port "80" and "443" before displaying on the startup
    // banner.  Returns a new list of API endpoints.
    func stripStandardPorts(apiEndpoints []string, host string) (newAPIEndpoints []string) {
    	if len(apiEndpoints) == 1 {
    		return apiEndpoints
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. releasenotes/notes/50737.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50737
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 17:40:45 UTC 2024
    - 171 bytes
    - Viewed (0)
  10. releasenotes/notes/50688.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50688
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 170 bytes
    - Viewed (0)
Back to top