Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for families (0.85 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. common-protos/k8s.io/api/core/v1/generated.proto

      //
      // This field may hold a maximum of two entries (dual-stack families, in
      // either order).  These families must correspond to the values of the
      // clusterIPs field, if specified. Both clusterIPs and ipFamilies are
      // governed by the ipFamilyPolicy field.
      // +listType=atomic
      // +optional
      repeated string ipFamilies = 19;
    
      // IPFamilyPolicy represents the dual-stack-ness requested or required by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"ipFamilyPolicy":                "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there...
    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/validation/validation.go

    		}
    	}
    
    	// match clusterIPs to their families, if they were provided
    	if !isHeadlessService(service) && len(service.Spec.ClusterIPs) > 0 && len(service.Spec.IPFamilies) > 0 {
    		for i, ip := range service.Spec.ClusterIPs {
    			if i > (len(service.Spec.IPFamilies) - 1) {
    				break // no more families to check
    			}
    
    			// 4=>6
    			if service.Spec.IPFamilies[i] == core.IPv4Protocol && netutils.IsIPv6String(ip) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      //
      // This field may hold a maximum of two entries (dual-stack families, in
      // either order).  These families must correspond to the values of the
      // clusterIPs field, if specified. Both clusterIPs and ipFamilies are
      // governed by the ipFamilyPolicy field.
      // +listType=atomic
      // +optional
      repeated string ipFamilies = 19;
    
      // IPFamilyPolicy represents the dual-stack-ness requested or required by
    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

    	// This field may hold a maximum of two entries (dual-stack families, in
    	// either order).  These families must correspond to the values of the
    	// clusterIPs field, if specified. Both clusterIPs and ipFamilies are
    	// governed by the ipFamilyPolicy field.
    	// +listType=atomic
    	// +optional
    	IPFamilies []IPFamily `json:"ipFamilies,omitempty" protobuf:"bytes,19,opt,name=ipFamilies,casttype=IPFamily"`
    
    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. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// 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
    	IpFamilies []string `protobuf:"bytes,29,rep,name=ipFamilies,proto3" json:"ipFamilies,omitempty"`
    	// 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
    - 329.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.17.md

    - Kubenet: added HostPort IPv6 support.  HostPortManager: operates only with one IP family, failing if receives port mapping entries with different IP families.  HostPortSyncer: operates only with one IP family, skipping portmap entries with different IP families ([#80854](https://github.com/kubernetes/kubernetes/pull/80854), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.20.md

      It changes the dual-stack API wrt Service from a single ipFamily field to 3
      fields: ipFamilyPolicy (SingleStack, PreferDualStack, RequireDualStack),
      ipFamilies (a list of families assigned), and clusterIPs (inclusive of
      clusterIP).  Most users do not need to set anything at all, defaulting will
      handle it for them.  Services are single-stack unless the user asks for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    			intrinsics[intrinsicKey{a, pkg, fn}] = b
    		}
    	}
    	// addF does the same as add but operates on architecture families.
    	addF := func(pkg, fn string, b intrinsicBuilder, archFamilies ...sys.ArchFamily) {
    		m := 0
    		for _, f := range archFamilies {
    			if f >= 32 {
    				panic("too many architecture families")
    			}
    			m |= 1 << uint(f)
    		}
    		for _, a := range all {
    			if m>>uint(a.Family)&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top