Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 206 for endpointSlice (0.15 sec)

  1. pkg/controller/endpointslice/config/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 04:13:27 UTC 2019
    - 682 bytes
    - Viewed (0)
  2. pkg/controlplane/reconcilers/instancecount_test.go

    			initialState:  makeEndpointsArray("foo", []string{"1.2.3.4"}, []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}}),
    		},
    		{
    			testName:      "existing endpoints satisfy, no endpointslice",
    			serviceName:   "foo",
    			ip:            "1.2.3.4",
    			endpointPorts: []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}},
    			initialState: []runtime.Object{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  3. pkg/config/schema/kubetypes/resources.gen.go

    	case *istioioapinetworkingv1alpha3.DestinationRule:
    		return gvk.DestinationRule, true
    	case *apiistioioapinetworkingv1alpha3.DestinationRule:
    		return gvk.DestinationRule, true
    	case *k8sioapidiscoveryv1.EndpointSlice:
    		return gvk.EndpointSlice, true
    	case *k8sioapicorev1.Endpoints:
    		return gvk.Endpoints, true
    	case *istioioapinetworkingv1alpha3.EnvoyFilter:
    		return gvk.EnvoyFilter, true
    	case *apiistioioapinetworkingv1alpha3.EnvoyFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. pkg/config/schema/collections/collections.gen.go

    	}.MustBuild()
    
    	EndpointSlice = resource.Builder{
    		Identifier:    "EndpointSlice",
    		Group:         "",
    		Kind:          "EndpointSlice",
    		Plural:        "endpointslices",
    		Version:       "v1",
    		Proto:         "k8s.io.api.discovery.v1.EndpointSlice",
    		ReflectType:   reflect.TypeOf(&k8sioapidiscoveryv1.EndpointSlice{}).Elem(),
    		ProtoPackage:  "k8s.io/api/discovery/v1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  5. pkg/controlplane/reconcilers/helpers_test.go

    		for i := range ips {
    			endpoints.Subsets[0].Addresses[i].IP = ips[i]
    		}
    	}
    	return endpoints
    }
    
    func makeEndpointSlice(name string, ips []string, ports []corev1.EndpointPort) *discoveryv1.EndpointSlice {
    	slice := &discoveryv1.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: metav1.NamespaceDefault,
    			Name:      name,
    			Labels: map[string]string{
    				discoveryv1.LabelServiceName: name,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/names/controller_names.go

    	EndpointsController                          = "endpoints-controller"
    	EndpointSliceController                      = "endpointslice-controller"
    	EndpointSliceMirroringController             = "endpointslice-mirroring-controller"
    	ReplicationControllerController              = "replicationcontroller-controller"
    	PodGarbageCollectorController                = "pod-garbage-collector-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/fuzz_test.go

    		p := fuzz.Struct[*corev1.Pod](fg)
    		controller.pods.onEvent(nil, p, model.EventAdd)
    		s := fuzz.Struct[*corev1.Service](fg)
    		controller.onServiceEvent(nil, s, model.EventAdd)
    		e := fuzz.Struct[*v1.EndpointSlice](fg)
    		controller.endpoints.onEvent(nil, e, model.EventAdd)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 26 03:41:41 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/apis/discovery/fuzzer/fuzzer.go

    )
    
    // Funcs returns the fuzzer functions for the discovery api group.
    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(obj *discovery.EndpointSlice, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    
    			addressTypes := []discovery.AddressType{discovery.AddressTypeIPv4, discovery.AddressTypeIPv6, discovery.AddressTypeFQDN}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 12 17:03:53 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  9. pkg/proxy/endpoint.go

    	// that is any pod with a deletion timestamp.
    	IsTerminating() bool
    
    	// ZoneHints returns the zone hint for the endpoint. This is based on
    	// endpoint.hints.forZones[0].name in the EndpointSlice API.
    	ZoneHints() sets.Set[string]
    }
    
    // BaseEndpointInfo contains base information that defines an endpoint.
    // This could be used directly by proxier while processing endpoints,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:38:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. go.work

    	./staging/src/k8s.io/controller-manager
    	./staging/src/k8s.io/cri-api
    	./staging/src/k8s.io/cri-client
    	./staging/src/k8s.io/csi-translation-lib
    	./staging/src/k8s.io/dynamic-resource-allocation
    	./staging/src/k8s.io/endpointslice
    	./staging/src/k8s.io/kms
    	./staging/src/k8s.io/kube-aggregator
    	./staging/src/k8s.io/kube-controller-manager
    	./staging/src/k8s.io/kube-proxy
    	./staging/src/k8s.io/kube-scheduler
    	./staging/src/k8s.io/kubectl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top