Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for ExternalIPs (0.49 sec)

  1. pkg/apis/core/types.go

    	// and requires Type to be ExternalName.
    	ExternalName string
    
    	// ExternalIPs are used by external load balancers, or can be set by
    	// users to handle external traffic that arrives at a node.
    	// +optional
    	ExternalIPs []string
    
    	// Only applies to Service Type: LoadBalancer
    	// LoadBalancer will get created with the IP specified in this field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.IPFamilyPolicy != nil {
    		in, out := &in.IPFamilyPolicy, &out.IPFamilyPolicy
    		*out = new(IPFamilyPolicy)
    		**out = **in
    	}
    	if in.ExternalIPs != nil {
    		in, out := &in.ExternalIPs, &out.ExternalIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.SessionAffinityConfig != nil {
    		in, out := &in.SessionAffinityConfig, &out.SessionAffinityConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    			(*out)[key] = val
    		}
    	}
    	if in.ClusterIPs != nil {
    		in, out := &in.ClusterIPs, &out.ClusterIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExternalIPs != nil {
    		in, out := &in.ExternalIPs, &out.ExternalIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.LoadBalancerSourceRanges != nil {
    		in, out := &in.LoadBalancerSourceRanges, &out.LoadBalancerSourceRanges
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// that are not part of the Kubernetes system.
    	// +optional
    	// +listType=atomic
    	ExternalIPs []string `json:"externalIPs,omitempty" protobuf:"bytes,5,rep,name=externalIPs"`
    
    	// Supports "ClientIP" and "None". Used to maintain session affinity.
    	// Enable client IP based session affinity.
    	// Must be ClientIP or None.
    	// Defaults to None.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"externalIPs":                   "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service.  These IPs are not managed by Kubernetes.  The user is responsible for ensuring that traffic arrives at a node with this IP.  A...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ClusterIP = in.ClusterIP
    	out.ClusterIPs = *(*[]string)(unsafe.Pointer(&in.ClusterIPs))
    	out.Type = core.ServiceType(in.Type)
    	out.ExternalIPs = *(*[]string)(unsafe.Pointer(&in.ExternalIPs))
    	out.SessionAffinity = core.ServiceAffinity(in.SessionAffinity)
    	out.LoadBalancerIP = in.LoadBalancerIP
    	out.LoadBalancerSourceRanges = *(*[]string)(unsafe.Pointer(&in.LoadBalancerSourceRanges))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation_test.go

    			s.Spec.ExternalTrafficPolicy = core.ServiceExternalTrafficPolicyCluster
    			s.Spec.ExternalIPs = []string{"127.0.0.1"}
    		},
    		numErrs: 1,
    	}, {
    		name: "invalid publicIPs unspecified",
    		tweakSvc: func(s *core.Service) {
    			s.Spec.ExternalTrafficPolicy = core.ServiceExternalTrafficPolicyCluster
    			s.Spec.ExternalIPs = []string{"0.0.0.0"}
    		},
    		numErrs: 1,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      // +optional
      optional string type = 4;
    
      // externalIPs is a list of IP addresses for which nodes in the cluster
      // will also accept traffic for this service.  These IPs are not managed by
      // Kubernetes.  The user is responsible for ensuring that traffic arrives
    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. staging/src/k8s.io/api/core/v1/generated.pb.go

    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.SessionAffinity)))
    	i--
    	dAtA[i] = 0x3a
    	if len(m.ExternalIPs) > 0 {
    		for iNdEx := len(m.ExternalIPs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ExternalIPs[iNdEx])
    			copy(dAtA[i:], m.ExternalIPs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ExternalIPs[iNdEx])))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	i -= len(m.Type)
    	copy(dAtA[i:], m.Type)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    		}
    	}
    
    	// dualstack <-> ClusterIPs <-> ipfamilies
    	allErrs = append(allErrs, ValidateServiceClusterIPsRelatedFields(service)...)
    
    	ipPath := specPath.Child("externalIPs")
    	for i, ip := range service.Spec.ExternalIPs {
    		idxPath := ipPath.Index(i)
    		if errs := validation.IsValidIP(idxPath, ip); len(errs) != 0 {
    			allErrs = append(allErrs, errs...)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top