Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for IpFamilies (0.32 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. pkg/apis/core/validation/validation.go

    			}
    		}
    	case len(oldService.Spec.IPFamilies) < len(service.Spec.IPFamilies):
    		// something has been added (upgraded)
    
    		// test if primary ipFamily has changed
    		if len(oldService.Spec.IPFamilies) > 0 &&
    			len(service.Spec.IPFamilies) > 0 &&
    			service.Spec.IPFamilies[0] != oldService.Spec.IPFamilies[0] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +optional
    	ClusterIPs []string
    
    	// IPFamilies identifies all the IPFamilies assigned for this Service. If a value
    	// was not provided for IPFamilies it will be defaulted based on the cluster
    	// configuration and the value of service.spec.ipFamilyPolicy. A maximum of two
    	// values (dual-stack IPFamilies) are allowed in IPFamilies. IPFamilies field is
    	// conditionally mutable: it allows for adding or removing a secondary IPFamily,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// 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
    	// are PreferDualStack, RequireDualStack, and SingleStack.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// IPFamilyPolicyRequireDualStack on a single stack cluster will result in validation errors. The
    	// IPFamilies (and their order) assigned  to this service is based on service.spec.ipFamilies. If
    	// service.spec.ipFamilies was not provided then it will be assigned according to how they are
    	// configured on the cluster. If service.spec.ipFamilies has only one entry then the alternative
    	// IPFamily will be added by apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // value.
      //
      // This field may hold a maximum of two entries (dual-stack IPs, in either order).
      // These IPs must correspond to the values of the ipFamilies field. Both
      // clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
      // +listType=atomic
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"type":                          "type determines how the Service is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // value.
      //
      // This field may hold a maximum of two entries (dual-stack IPs, in either order).
      // These IPs must correspond to the values of the ipFamilies field. Both
      // clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
      // +listType=atomic
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	out.PublishNotReadyAddresses = in.PublishNotReadyAddresses
    	out.SessionAffinityConfig = (*core.SessionAffinityConfig)(unsafe.Pointer(in.SessionAffinityConfig))
    	out.IPFamilies = *(*[]core.IPFamily)(unsafe.Pointer(&in.IPFamilies))
    	out.IPFamilyPolicy = (*core.IPFamilyPolicy)(unsafe.Pointer(in.IPFamilyPolicy))
    	out.AllocateLoadBalancerNodePorts = (*bool)(unsafe.Pointer(in.AllocateLoadBalancerNodePorts))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. 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)
Back to top