Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 169 for ep (0.02 sec)

  1. pkg/proxy/nftables/proxier.go

    		}
    
    		if svcInfo.SessionAffinityType() == v1.ServiceAffinityClientIP {
    			// Generate the per-endpoint affinity sets
    			for _, ep := range allLocallyReachableEndpoints {
    				epInfo, ok := ep.(*endpointInfo)
    				if !ok {
    					proxier.logger.Error(nil, "Failed to cast endpointsInfo", "endpointsInfo", ep)
    					continue
    				}
    
    				// Create a set to store current affinity mappings. As
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pkg/registry/core/endpoint/storage/storage.go

    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"ep"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/reconciler_test.go

    			Addresses: []corev1.EndpointAddress{{
    				IP:       "10.0.0.1",
    				Hostname: "pod-1",
    			}},
    		}},
    		existingEndpointSlices: []*discovery.EndpointSlice{{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "test-ep-1",
    			},
    			AddressType: discovery.AddressTypeIPv4,
    			Ports: []discovery.EndpointPort{{
    				Name:     pointer.String("http"),
    				Port:     pointer.Int32(80),
    				Protocol: &protoTCP,
    			}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. cmd/erasure-sets_test.go

    	if err != nil {
    		t.Fatalf("Unable to format drives for erasure, %s", err)
    	}
    
    	ep := PoolEndpoints{Endpoints: endpoints}
    
    	parity, err := ecDrivesNoConfig(16)
    	if err != nil {
    		t.Fatalf("Unexpected error during EC drive config: %v", err)
    	}
    	if _, err := newErasureSets(ctx, ep, storageDisks, format, parity, 0); err != nil {
    		t.Fatalf("Unable to initialize erasure")
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		if err != nil {
    			t.Fatal("Failed to receive endpoint", err)
    		}
    		ep := adscConn.GetEndpoints()[clusterName]
    		if ep == nil {
    			t.Fatal("Endpoints not found for persistent session cluster")
    		}
    		if len(ep.GetEndpoints()) == 0 {
    			t.Fatal("No endpoint not found for persistent session cluster")
    		}
    		lbep1 := ep.GetEndpoints()[0]
    		if lbep1.LbEndpoints[0].HealthStatus.Number() != 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. docs/sts/web-identity.go

    	}
    	dec := json.NewDecoder(resp.Body)
    	if err = dec.Decode(&d); err != nil {
    		return d, err
    	}
    	return d, nil
    }
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&configEndpoint, "config-ep",
    		"http://localhost:8080/auth/realms/minio/.well-known/openid-configuration",
    		"OpenID discovery document endpoint")
    	flag.StringVar(&clientID, "cid", "", "Client ID")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    		for _, e := range proxier.endpointsMap[svcPortName] {
    			ep, ok := e.(*proxy.BaseEndpointInfo)
    			if !ok {
    				proxier.logger.Error(nil, "Failed to cast BaseEndpointInfo", "endpoint", e)
    				continue
    			}
    			if !ep.IsLocal() {
    				continue
    			}
    			epIP := ep.IP()
    			epPort := ep.Port()
    			// Error parsing this endpoint has been logged. Skip to next endpoint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller.go

    		return
    	}
    	for _, ep := range list {
    		if _, ok := ep.Annotations[resourcelock.LeaderElectionRecordAnnotationKey]; ok {
    			// when there are multiple controller-manager instances,
    			// we observe that it will delete leader-election endpoints after 5min
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	}
    	assert.EventuallyEqual(t, func() int {
    		ep := GetEndpointsForPort(svc, ctl.Endpoints, 80)
    		return len(ep)
    	}, 2)
    
    	ep := GetEndpointsForPort(svc, ctl.Endpoints, 80)
    	if len(ep) != 2 {
    		t.Fatalf("Invalid response for GetEndpoints %v", ep)
    	}
    
    	if ep[0].Address == "10.10.1.1" && ep[0].Network != "network1" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy_test.go

    		endpointLister := v1listers.NewEndpointsLister(endpointCache)
    		if test.endpoints != nil {
    			for _, svc := range test.services {
    				for _, ep := range test.endpoints(svc) {
    					if err := endpointCache.Add(ep); err != nil {
    						t.Fatalf("%s unexpected endpoint add error: %v", test.name, err)
    					}
    				}
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top