Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for families (0.16 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    		}
    		if tc.expectStackDowngrade && len(want.Spec.IPFamilies) > len(got.Spec.ClusterIPs) {
    			want.Spec.IPFamilies = want.Spec.IPFamilies[0:1]
    		} else if len(got.Spec.IPFamilies) > len(want.Spec.IPFamilies) {
    			want.Spec.IPFamilies = append(want.Spec.IPFamilies, got.Spec.IPFamilies[len(want.Spec.IPFamilies):]...)
    		}
    	}
    
    	if tc.expectNodePorts {
    		for i := range want.Spec.Ports {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/README.md

    ```
    
    COS image will experience dev, beta, stable and LTS stage. Before LTS stage, image is named with its
    family as a prefix, e.g cos-dev, cos-beta, cos-stable. However, the milestone
    number in those families may change when channel promotions happen. Only when a milestone becomes LTS, the
    image will have a new family, and the milestone number in the image name stays the same. The image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. 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)
  4. src/net/ipsock.go

    // "tcp" and "udp" networks does not listen for both IPv4 and IPv6
    // connections. This is due to the fact that IPv4 traffic will not be
    // routed to an IPv6 socket - two separate sockets are required if
    // both address families are to be supported.
    // See inet6(4) for details.
    
    type ipStackCapabilities struct {
    	sync.Once             // guards following
    	ipv4Enabled           bool
    	ipv6Enabled           bool
    	ipv4MappedIPv6Enabled bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K 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. operator/pkg/apis/istio/v1alpha1/values_types.proto

      ServiceAccount serviceAccount = 28;
    
      // Defines which IP family to use for single stack or the order of IP families for dual-stack.
      // Valid list items are "IPv4", "IPv6".
      // More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
      repeated string ipFamilies = 29;
    
      // Controls whether Services are configured to use IPv4, IPv6, or both. Valid options
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top