Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for externalIPs (0.29 sec)

  1. pkg/printers/internalversion/printers_test.go

    		{
    			// Test LoadBalancer service with mul ExternalIPs
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "test6"},
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeLoadBalancer,
    					Ports: []api.ServicePort{
    						{
    							Protocol: "tcp",
    							Port:     8888,
    						},
    					},
    					ClusterIPs:  []string{"10.9.8.7"},
    					ExternalIPs: mulExternalIP,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller.go

    	}
    }
    
    func (c *Controller) addOrUpdateService(pre, curr *v1.Service, currConv *model.Service, event model.Event, updateEDSCache bool) {
    	needsFullPush := false
    	// First, process nodePort gateway service, whose externalIPs specified
    	// and loadbalancer gateway service
    	if currConv.Attributes.ClusterExternalAddresses.Len() > 0 {
    		needsFullPush = c.extractGatewaysFromService(currConv)
    	} else if isNodePortGatewayService(curr) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/apis/core/v1/defaults_test.go

    		t.Errorf("Expected ExternalTrafficPolicy to be %v, got %v", v1.ServiceExternalTrafficPolicyCluster, out.Spec.ExternalTrafficPolicy)
    	}
    
    	in = &v1.Service{Spec: v1.ServiceSpec{Type: v1.ServiceTypeClusterIP, ExternalIPs: []string{"1.2.3.4"}}}
    	obj = roundTrip(t, runtime.Object(in))
    	out = obj.(*v1.Service)
    	if out.Spec.ExternalTrafficPolicy != v1.ServiceExternalTrafficPolicyCluster {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top