Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 206 for endpointSlice (0.22 sec)

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

    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:conversion-gen=k8s.io/kubernetes/pkg/controller/endpointslice/config
    // +k8s:conversion-gen-external-types=k8s.io/kube-controller-manager/config/v1alpha1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 04:13:27 UTC 2019
    - 855 bytes
    - Viewed (0)
  2. pkg/registry/discovery/endpointslice/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 21:50:00 UTC 2019
    - 660 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    	return map_EndpointHints
    }
    
    var map_EndpointPort = map[string]string{
    	"":            "EndpointPort represents a Port used by an EndpointSlice",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. releasenotes/notes/es-drop-beta.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Removed** support for `EndpointSlice` version `discovery.k8s.io/v1beta1`. The `v1` version has been available since Kubernetes 1.21.
      `EndpointSlice` `v1` is automatically used on Kubernetes 1.21+, while `Endpoints` is used on older versions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 09 02:21:19 UTC 2023
    - 484 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1/generated.proto

      // +listType=atomic
      repeated ForZone forZones = 1;
    }
    
    // EndpointPort represents a Port used by an EndpointSlice
    // +structType=atomic
    message EndpointPort {
      // name represents the name of this port. All ports in an EndpointSlice must have a unique name.
      // If the EndpointSlice is derived from a Kubernetes service, this corresponds to the Service.ports[].name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    }
    
    func populateEndpointSlices(proxier *Proxier, allEndpointSlices ...*discovery.EndpointSlice) {
    	for i := range allEndpointSlices {
    		proxier.OnEndpointSliceAdd(allEndpointSlices[i])
    	}
    }
    
    func makeTestEndpointSlice(namespace, name string, sliceNum int, epsFunc func(*discovery.EndpointSlice)) *discovery.EndpointSlice {
    	eps := &discovery.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/number_generated_rules_test.go

    	services := make([]*v1.Service, nServices)
    	endpointSlices := make([]*discovery.EndpointSlice, nServices)
    
    	// base parameters
    	basePort := 80
    	base := netutils.BigForIP(netutils.ParseIPSloppy("10.0.0.1"))
    
    	// generate a base endpoint slice object
    	baseEp := netutils.BigForIP(netutils.ParseIPSloppy("172.16.0.1"))
    	epPort := 8080
    
    	eps := &discovery.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.21
    
    // EndpointSlice represents a subset of the endpoints that implement a service.
    // For a given service there may be multiple EndpointSlice objects, selected by
    // labels, which must be joined to produce the full set of endpoints.
    type EndpointSlice struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/endpointslicecontroller.go

    	fs.Int32Var(&o.MaxEndpointsPerSlice, "max-endpoints-per-slice", o.MaxEndpointsPerSlice, "The maximum number of endpoints that will be added to an EndpointSlice. More endpoints per slice will result in less endpoint slices, but larger resources. Defaults to 100.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  10. pkg/proxy/kubemark/hollow_proxy.go

    func (*FakeProxier) OnServiceSynced()                                                 {}
    func (*FakeProxier) OnEndpointSliceAdd(slice *discoveryv1.EndpointSlice)              {}
    func (*FakeProxier) OnEndpointSliceUpdate(oldSlice, slice *discoveryv1.EndpointSlice) {}
    func (*FakeProxier) OnEndpointSliceDelete(slice *discoveryv1.EndpointSlice)           {}
    func (*FakeProxier) OnEndpointSlicesSynced()                                          {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top