Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for ServiceTypeLoadBalancer (0.34 sec)

  1. pkg/apis/core/validation/validation.go

    			}
    		}
    	}
    
    	if service.Spec.AllocateLoadBalancerNodePorts != nil && service.Spec.Type != core.ServiceTypeLoadBalancer {
    		allErrs = append(allErrs, field.Forbidden(specPath.Child("allocateLoadBalancerNodePorts"), "may only be used when `type` is 'LoadBalancer'"))
    	}
    
    	if service.Spec.Type == core.ServiceTypeLoadBalancer && service.Spec.AllocateLoadBalancerNodePorts == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			// Test LoadBalancer service
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "test3"},
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeLoadBalancer,
    					Ports: []api.ServicePort{
    						{
    							Protocol: "tcp",
    							Port:     8888,
    						},
    					},
    					ClusterIPs: []string{"10.9.8.7"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		}
    		return "<none>"
    	case api.ServiceTypeNodePort:
    		if len(svc.Spec.ExternalIPs) > 0 {
    			return strings.Join(svc.Spec.ExternalIPs, ",")
    		}
    		return "<none>"
    	case api.ServiceTypeLoadBalancer:
    		lbIps := loadBalancerStatusStringer(svc.Status.LoadBalancer, wide)
    		if len(svc.Spec.ExternalIPs) > 0 {
    			results := []string{}
    			if len(lbIps) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// every node, in addition to 'ClusterIP' type.
    	ServiceTypeNodePort ServiceType = "NodePort"
    
    	// ServiceTypeLoadBalancer means a service will be exposed via an
    	// external load balancer (if the cloud provider supports it), in addition
    	// to 'NodePort' type.
    	ServiceTypeLoadBalancer ServiceType = "LoadBalancer"
    
    	// ServiceTypeExternalName means a service consists of only a reference to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// every node, in addition to 'ClusterIP' type.
    	ServiceTypeNodePort ServiceType = "NodePort"
    
    	// ServiceTypeLoadBalancer means a service will be exposed via an
    	// external load balancer (if the cloud provider supports it), in addition
    	// to 'NodePort' type.
    	ServiceTypeLoadBalancer ServiceType = "LoadBalancer"
    
    	// ServiceTypeExternalName means a service consists of only a reference to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top