Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for endpoints1 (0.46 sec)

  1. prow/config/calico.yaml

                      traffic that goes from a workload endpoint to the host itself (after
                      the traffic hits the endpoint egress policy). By default Calico
                      blocks traffic from workload endpoints to the host itself with an
                      iptables "DROP" action. If you want to allow some or all traffic
                      from endpoint to host, set this parameter to RETURN or ACCEPT. Use
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    				{endpoint: "10.1.1.1:12", isLocal: false},
    				{endpoint: "10.1.1.2:12", isLocal: true},
    			},
    			makeServicePortName("ns1", "ep1", "p13", v1.ProtocolUDP): {
    				{endpoint: "10.1.1.3:13", isLocal: false},
    				{endpoint: "10.1.1.4:13", isLocal: true},
    			},
    			makeServicePortName("ns1", "ep1", "p14", v1.ProtocolUDP): {
    				{endpoint: "10.1.1.3:14", isLocal: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. \"LoadBalancer\" builds on NodePort and...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// "ClusterIP" allocates a cluster-internal IP address for load-balancing to
    	// endpoints. Endpoints are determined by the selector or if that is not
    	// specified, by manual construction of an Endpoints object. If clusterIP is
    	// "None", no virtual IP is allocated and the endpoints are published as a
    	// set of endpoints rather than a stable IP.
    	// "NodePort" builds on ClusterIP and allocates a port on every node which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // "ClusterIP" allocates a cluster-internal IP address for load-balancing
      // to endpoints. Endpoints are determined by the selector or if that is not
      // specified, by manual construction of an Endpoints object or
      // EndpointSlice objects. If clusterIP is "None", no virtual IP is
      // allocated and the endpoints are published as a set of endpoints rather
      // than a virtual IP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// "ClusterIP" allocates a cluster-internal IP address for load-balancing
    	// to endpoints. Endpoints are determined by the selector or if that is not
    	// specified, by manual construction of an Endpoints object or
    	// EndpointSlice objects. If clusterIP is "None", no virtual IP is
    	// allocated and the endpoints are published as a set of endpoints rather
    	// than a virtual IP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	return allErrs
    }
    
    // ValidateEndpointsCreate validates Endpoints on create.
    func ValidateEndpointsCreate(endpoints *core.Endpoints) field.ErrorList {
    	return ValidateEndpoints(endpoints)
    }
    
    // ValidateEndpointsUpdate validates Endpoints on update. NodeName changes are
    // allowed during update to accommodate the case where nodeIP or PodCIDR is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    		ResourcePrefix: "endpoints",
    	})
    	if err != nil {
    		t.Fatalf("unexpected error from REST storage: %v", err)
    	}
    	if endpoints != nil && len(endpoints) > 0 {
    		ctx := genericapirequest.NewDefaultContext()
    		for ix := range endpoints {
    			key, _ := endpointsStorage.KeyFunc(ctx, endpoints[ix].Name)
    			if err := endpointsStorage.Store.Storage.Create(ctx, key, endpoints[ix], nil, 0, false); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Endpoints)(nil), (*core.Endpoints)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Endpoints_To_core_Endpoints(a.(*v1.Endpoints), b.(*core.Endpoints), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.Endpoints)(nil), (*v1.Endpoints)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.25.md

    - Fixing issue with Winkernel Proxier - No ingress load balancer rules with endpoints to support load balancing when all the endpoints are terminating. ([#114452](https://github.com/kubernetes/kubernetes/pull/114452),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top