Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for families (0.39 sec)

  1. cmd/kube-apiserver/app/options/validation_test.go

    	}{
    		{
    			name: "master endpoint reconciler - IPv4 families",
    			extra: Extra{
    				EndpointReconcilerType:       "master-count",
    				PrimaryServiceClusterIPRange: *ipv4cidr,
    			},
    			generic: apiserveroptions.ServerRunOptions{
    				AdvertiseAddress: ipv4address,
    			},
    			wantErr: false,
    		},
    		{
    			name: "master endpoint reconciler - IPv6 families",
    			extra: Extra{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/alloc.go

    			if *(service.Spec.IPFamilyPolicy) != api.IPFamilyPolicySingleStack {
    				// add the alt ipfamily
    				if service.Spec.IPFamilies[0] == api.IPv4Protocol {
    					service.Spec.IPFamilies = append(service.Spec.IPFamilies, api.IPv6Protocol)
    				} else {
    					service.Spec.IPFamilies = append(service.Spec.IPFamilies, api.IPv4Protocol)
    				}
    			}
    		}
    
    		// nothing more needed here
    		return nil
    	}
    
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_linux.go

    // that family.
    func getIPTables(primaryFamily v1.IPFamily) ([2]utiliptables.Interface, utiliptables.Interface) {
    	execer := exec.New()
    
    	// Create iptables handlers for both families. Always ordered as IPv4, IPv6
    	ipt := [2]utiliptables.Interface{
    		utiliptables.New(execer, utiliptables.ProtocolIPv4),
    		utiliptables.New(execer, utiliptables.ProtocolIPv6),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. src/net/listen_test.go

    	{"tcp4", "127.0.0.1", "tcp6", "::1", nil},
    	{"tcp6", "::1", "tcp4", "127.0.0.1", nil},
    }
    
    // TestDualStackTCPListener tests both single and double listen
    // to a test listener with various address families, different
    // listening address and same port.
    //
    // On DragonFly BSD, we expect the kernel version of node under test
    // to be greater than or equal to 4.4.
    func TestDualStackTCPListener(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/controller/repair_test.go

    				ClusterIP:  "192.168.1.1",
    				ClusterIPs: []string{"192.168.1.1"},
    				IPFamilies: []corev1.IPFamily{corev1.IPv4Protocol},
    			},
    		},
    		&corev1.Service{
    			ObjectMeta: metav1.ObjectMeta{Namespace: "two", Name: "two"},
    			Spec: corev1.ServiceSpec{
    				ClusterIP:  "192.168.1.100",
    				ClusterIPs: []string{"192.168.1.100"},
    				IPFamilies: []corev1.IPFamily{corev1.IPv4Protocol},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  6. pkg/kubelet/container/helpers.go

    			HostIP:        p.HostIP,
    		}
    
    		// We need to determine the address family this entry applies to. We do this to ensure
    		// duplicate containerPort / protocol rules work across different address families.
    		// https://github.com/kubernetes/kubernetes/issues/82373
    		family := "any"
    		if p.HostIP != "" {
    			if utilsnet.IsIPv6String(p.HostIP) {
    				family = "v6"
    			} else {
    				family = "v4"
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server.go

    		if dual, _ := netutils.IsDualStackCIDRStrings(config); dual {
    			anyDualStackConfig = true
    			break
    		}
    	}
    
    	// Warn if NodePortAddresses does not limit connections on all IP families that
    	// seem to be in use.
    	cidrsByFamily := proxyutil.MapCIDRsByIPFamily(s.Config.NodePortAddresses)
    	if len(s.Config.NodePortAddresses) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		"associated interface(s) must be reachable by the rest of the cluster, and by CLI/web "+
    		"clients. If blank or an unspecified address (0.0.0.0 or ::), all interfaces and IP address families will be used.")
    
    	desc := "The port on which to serve HTTPS with authentication and authorization."
    	if s.Required {
    		desc += " It cannot be switched off with 0."
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/options.go

    	fs.Var(&utilflag.IPVar{Val: &c.Address}, "address", "The IP address for the Kubelet to serve on (set to '0.0.0.0' or '::' for listening on all interfaces and IP address families)")
    	fs.Int32Var(&c.Port, "port", c.Port, "The port for the Kubelet to serve on.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/link/link_test.go

    have been born into the cause; innumerable young people have married into it; innumerable old people have died out of it. Scores of persons have deliriously found themselves made parties in Jarndyce and Jarndyce, without knowing how or why; whole families have inherited legendary hatreds with the suit. The little plaintiff or defendant, who was promised a new rocking-horse when Jarndyce and Jarndyce should be settled, has grown up, possessed himself of a real horse, and trotted away into the other...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top