Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addEndpoint (0.28 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	}
    
    	// standard ordering
    	addService("svc")
    	addPod("pod1", "172.0.1.1")
    	addEndpoint("svc", []string{"172.0.1.1"}, []string{"pod1"})
    	assertEndpointsEvent([]string{"172.0.1.1"}, []string{"pod1"})
    	fx.Clear()
    
    	// Create the endpoint, then later add the pod. Should eventually get an update for the endpoint
    	addEndpoint("svc", []string{"172.0.1.1", "172.0.1.2"}, []string{"pod1", "pod2"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. pkg/proxy/endpointslicecache.go

    				Protocol:       *port.Protocol,
    			}
    
    			endpointInfoBySP[svcPortName] = cache.addEndpoints(&svcPortName, int(*port.Port), endpointInfoBySP[svcPortName], sliceData.endpointSlice.Endpoints)
    		}
    	}
    
    	return endpointInfoBySP
    }
    
    // addEndpoints adds an Endpoint for each unique endpoint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top