Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,299 for endpoints2 (0.37 sec)

  1. pkg/controller/endpoint/endpoints_controller.go

    	return !ok
    }
    
    // truncateEndpoints by best effort will distribute the endpoints over the subsets based on the proportion
    // of endpoints per subset and will prioritize Ready Endpoints over NotReady Endpoints.
    func truncateEndpoints(endpoints *v1.Endpoints) bool {
    	totalReady := 0
    	totalNotReady := 0
    	for _, subset := range endpoints.Subsets {
    		totalReady += len(subset.Addresses)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier_test.go

    			eps.AddressType = discovery.AddressTypeIPv4
    			eps.Endpoints = []discovery.Endpoint{{
    				Addresses: []string{epIpAddressRemote},
    				NodeName:  ptr.To("testhost2"), // This will make this endpoint as a remote endpoint
    			}}
    			eps.Ports = []discovery.EndpointPort{{
    				Name:     ptr.To(svcPortName.Port),
    				Port:     ptr.To(int32(svcPort)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. pkg/controlplane/reconcilers/lease.go

    // expire. ReconcileEndpoints will notice that the endpoints object is
    // different from the directory listing, and update the endpoints object
    // accordingly.
    func (r *leaseEndpointReconciler) ReconcileEndpoints(serviceName string, ip net.IP, endpointPorts []corev1.EndpointPort, reconcilePorts bool) error {
    	// reconcile endpoints only if apiserver was not shutdown
    	if r.stopReconcilingCalled.Load() {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. cmd/bootstrap-peer-server.go

    	var clnts []*bootstrapRESTClient
    	for _, ep := range endpointServerPools {
    		for _, endpoint := range ep.Endpoints {
    			if endpoint.IsLocal {
    				continue
    			}
    			if seenClient.Contains(endpoint.Host) {
    				continue
    			}
    			seenClient.Add(endpoint.Host)
    			clnts = append(clnts, &bootstrapRESTClient{gm.Connection(endpoint.GridHost())})
    		}
    	}
    	return clnts
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/number_generated_rules_test.go

    				}
    				if len(eps[i].Endpoints) != test.epPerService {
    					t.Fatalf("expected %d endpoints per slice , received %d", test.epPerService, len(eps[i].Endpoints))
    				}
    				for j := 0; j < test.epPerService; j++ {
    					nodeName := fmt.Sprintf("node-%d", j)
    					if *eps[i].Endpoints[j].NodeName != nodeName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/network.go

    			return ""
    		}
    		if len(entries) > 1 {
    			log.Warnf("Found multiple networks CIDRs matching the endpoint IP: %s. Using the first match.", endpointIP)
    		}
    		if len(entries) > 0 {
    			return (entries[0].(namedRangerEntry)).name
    		}
    	}
    	return ""
    }
    
    // namedRangerEntry for holding network's CIDR and name
    type namedRangerEntry struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/hns_test.go

    		t.Errorf("%v does not match %v", endpoint.hnsID, Endpoint.Id)
    	}
    	if endpoint.ip != Endpoint.IpConfigurations[0].IpAddress {
    		t.Errorf("%v does not match %v", endpoint.ip, Endpoint.IpConfigurations[0].IpAddress)
    	}
    	if endpoint.macAddress != Endpoint.MacAddress {
    		t.Errorf("%v does not match %v", endpoint.macAddress, Endpoint.MacAddress)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. releasenotes/notes/fix-proxyconfig-endpoints-json.yaml

    Keith Mattix II <******@****.***> 1694141094 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 02:44:54 UTC 2023
    - 205 bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    	// set of active ClusterIPs.
    	clusterIPsSet = "cluster-ips"
    
    	// handling for services with no endpoints
    	serviceEndpointsCheckChain  = "service-endpoints-check"
    	nodePortEndpointsCheckChain = "nodeport-endpoints-check"
    	noEndpointServicesMap       = "no-endpoint-services"
    	noEndpointNodePortsMap      = "no-endpoint-nodeports"
    	rejectChain                 = "reject-chain"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds_sh_test.go

    			// endpoints weighted accordingly with the IP of the ingress gateway.
    			network:   "network3",
    			sidecarID: sidecarID("10.3.0.1", "app3"),
    			want: expectedResults{
    				weights: map[string]uint32{
    					// 3 local endpoints.
    					"10.3.0.1": 2,
    					"10.3.0.2": 2,
    					"10.3.0.3": 2,
    
    					// 1 endpoint on network 1, accessed via gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top