Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for externalIPs (0.22 sec)

  1. pkg/proxy/iptables/proxier_test.go

    )
    
    // Conventions for tests using NewFakeProxier:
    //
    // Pod IPs:             10.0.0.0/8
    // Service ClusterIPs:  172.30.0.0/16
    // Node IPs:            192.168.0.0/24
    // Local Node IP:       192.168.0.2
    // Service ExternalIPs: 192.168.99.0/24
    // LoadBalancer IPs:    1.2.3.4, 5.6.7.8, 9.10.11.12
    // Non-cluster IPs:     203.0.113.0/24
    // LB Source Range:     203.0.113.0/25
    
    const testHostname = "test-hostname"
    const testNodeIP = "192.168.0.2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.29.md

    - Allowed specifying `ExternalTrafficPolicy` for `Services` with `ExternalIPs`. ([#119150](https://github.com/kubernetes/kubernetes/pull/119150), [@tnqn](https://github.com/tnqn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. prow/config/calico.yaml

                    type: array
                  serviceExternalIPs:
                    description: ServiceExternalIPs are the CIDR blocks for Kubernetes
                      Service External IPs. Kubernetes Service ExternalIPs will only be
                      advertised if they are within one of these blocks.
                    items:
                      description: ServiceExternalIPBlock represents a single allowed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top