Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,299 for endpoints1 (0.17 sec)

  1. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                from (or terminates at) endpoints within the selected
                                namespaces will be matched. When both NamespaceSelector
                                and Selector are defined on the same rule, then only workload
                                endpoints that are matched by both selectors will be selected
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  2. pkg/controlplane/reconcilers/lease.go

    	kruntime "k8s.io/apimachinery/pkg/runtime"
    	apirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/rest"
    	"k8s.io/apiserver/pkg/storage"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    	storagefactory "k8s.io/apiserver/pkg/storage/storagebackend/factory"
    	endpointsv1 "k8s.io/kubernetes/pkg/api/v1/endpoints"
    )
    
    // Leases is an interface which assists in managing the set of active masters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Endpoints.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 728 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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