Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for IPv4Protocol (0.26 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    			name: "correct ipv4 address",
    			ip: &networkingv1alpha1.IPAddress{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "10.0.1.1",
    					Labels: map[string]string{
    						networkingv1alpha1.LabelIPAddressFamily: string(v1.IPv4Protocol),
    						networkingv1alpha1.LabelManagedBy:       ipallocator.ControllerName,
    					},
    					CreationTimestamp: metav1.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC),
    				},
    				Spec: networkingv1alpha1.IPAddressSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    	}{
    		{
    			name: "ipv4, localhost-nodeports enabled",
    
    			family:             v1.IPv4Protocol,
    			localhostNodePorts: true,
    			nodePortAddresses:  nil,
    
    			allowAltNodeIP: true,
    			expectFirewall: true,
    		},
    		{
    			name: "ipv4, localhost-nodeports disabled",
    
    			family:             v1.IPv4Protocol,
    			localhostNodePorts: false,
    			nodePortAddresses:  nil,
    
    			allowAltNodeIP: true,
    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. pkg/controller/endpoint/endpoints_controller.go

    		e.queue.AddAfter(key, e.endpointUpdatesBatchPeriod)
    	}
    }
    
    func podToEndpointAddressForService(svc *v1.Service, pod *v1.Pod) (*v1.EndpointAddress, error) {
    	var endpointIP string
    	ipFamily := v1.IPv4Protocol
    
    	if len(svc.Spec.IPFamilies) > 0 {
    		// controller is connected to an api-server that correctly sets IPFamilies
    		ipFamily = svc.Spec.IPFamilies[0] // this works for headful and headless
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    // to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies).
    type IPFamily string
    
    const (
    	// IPv4Protocol indicates that this IP is IPv4 protocol
    	IPv4Protocol IPFamily = "IPv4"
    	// IPv6Protocol indicates that this IP is IPv6 protocol
    	IPv6Protocol IPFamily = "IPv6"
    )
    
    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. pkg/apis/core/validation/validation.go

    var supportedServiceInternalTrafficPolicy = sets.New(core.ServiceInternalTrafficPolicyCluster, core.ServiceInternalTrafficPolicyLocal)
    
    var supportedServiceIPFamily = sets.New(core.IPv4Protocol, core.IPv6Protocol)
    var supportedServiceIPFamilyPolicy = sets.New(
    	core.IPFamilyPolicySingleStack,
    	core.IPFamilyPolicyPreferDualStack,
    	core.IPFamilyPolicyRequireDualStack)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    // to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies).
    // +enum
    type IPFamily string
    
    const (
    	// IPv4Protocol indicates that this IP is IPv4 protocol
    	IPv4Protocol IPFamily = "IPv4"
    	// IPv6Protocol indicates that this IP is IPv6 protocol
    	IPv6Protocol IPFamily = "IPv6"
    	// IPFamilyUnknown indicates that this IP is unknown protocol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top