Add NodePort to ServicePort

We prevent it from being set by validation
This commit is contained in:
Justin Santa Barbara 2015-05-22 17:54:19 -04:00
parent 973c2e4819
commit 2197c8da5a
11 changed files with 66 additions and 0 deletions

View File

@ -1102,6 +1102,10 @@ type ServicePort struct {
// of v1beta3 the default value is the sames as the Port field (an
// identity map).
TargetPort util.IntOrString `json:"targetPort"`
// The port on each node on which this service is exposed.
// Default is to auto-allocate a port if the visibility of this Service requires one.
NodePort int `json:"nodePort" description:"the port on each node on which this service is exposed"`
}
// Service is a named abstraction of software service (for example, mysql) consisting of local port

View File

@ -2071,6 +2071,7 @@ func convert_api_ServicePort_To_v1_ServicePort(in *api.ServicePort, out *Service
if err := s.Convert(&in.TargetPort, &out.TargetPort, 0); err != nil {
return err
}
out.NodePort = in.NodePort
return nil
}
@ -4326,6 +4327,7 @@ func convert_v1_ServicePort_To_api_ServicePort(in *ServicePort, out *api.Service
if err := s.Convert(&in.TargetPort, &out.TargetPort, 0); err != nil {
return err
}
out.NodePort = in.NodePort
return nil
}

View File

@ -1078,6 +1078,10 @@ type ServicePort struct {
// target Pod's container ports. If this is not specified, the value
// of Port is used (an identity map).
TargetPort util.IntOrString `json:"targetPort,omitempty" description:"the port to access on the pods targeted by the service; defaults to the service port"`
// The port on each node on which this service is exposed.
// Default is to auto-allocate a port if the visibility of this Service requires one.
NodePort int `json:"nodePort" description:"the port on each node on which this service is exposed"`
}
// Service is a named abstraction of software service (for example, mysql) consisting of local port

View File

@ -774,6 +774,7 @@ func addConversionFuncs() {
Port: in.Spec.Ports[i].Port,
Protocol: Protocol(in.Spec.Ports[i].Protocol),
ContainerPort: in.Spec.Ports[i].TargetPort,
NodePort: in.Spec.Ports[i].NodePort,
})
}
@ -823,6 +824,7 @@ func addConversionFuncs() {
Port: in.Ports[i].Port,
Protocol: api.Protocol(in.Ports[i].Protocol),
TargetPort: in.Ports[i].ContainerPort,
NodePort: in.Ports[i].NodePort,
})
}
}

View File

@ -958,6 +958,10 @@ type ServicePort struct {
// of Port is used (an identity map) - note this is a different default
// than Service.ContainerPort.
ContainerPort util.IntOrString `json:"containerPort" description:"the port to access on the containers belonging to pods targeted by the service; defaults to the service port"`
// The port on each node on which this service is exposed.
// Default is to auto-allocate a port if the visibility of this Service requires one.
NodePort int `json:"nodePort" description:"the port on each node on which this service is exposed"`
}
// ServiceAccount binds together:

View File

@ -696,6 +696,7 @@ func addConversionFuncs() {
Port: in.Spec.Ports[i].Port,
Protocol: Protocol(in.Spec.Ports[i].Protocol),
ContainerPort: in.Spec.Ports[i].TargetPort,
NodePort: in.Spec.Ports[i].NodePort,
})
}
@ -745,6 +746,7 @@ func addConversionFuncs() {
Port: in.Ports[i].Port,
Protocol: api.Protocol(in.Ports[i].Protocol),
TargetPort: in.Ports[i].ContainerPort,
NodePort: in.Ports[i].NodePort,
})
}
}

View File

@ -962,6 +962,10 @@ type ServicePort struct {
// of Port is used (an identity map) - note this is a different default
// than Service.ContainerPort.
ContainerPort util.IntOrString `json:"containerPort" description:"the port to access on the containers belonging to pods targeted by the service; defaults to the service port"`
// The port on each node on which this service is exposed.
// Default is to auto-allocate a port if the visibility of this Service requires one.
NodePort int `json:"nodePort" description:"the port on each node on which this service is exposed"`
}
// ServiceAccount binds together:

View File

@ -2010,6 +2010,7 @@ func convert_api_ServicePort_To_v1beta3_ServicePort(in *api.ServicePort, out *Se
if err := s.Convert(&in.TargetPort, &out.TargetPort, 0); err != nil {
return err
}
out.NodePort = in.NodePort
return nil
}
@ -4198,6 +4199,7 @@ func convert_v1beta3_ServicePort_To_api_ServicePort(in *ServicePort, out *api.Se
if err := s.Convert(&in.TargetPort, &out.TargetPort, 0); err != nil {
return err
}
out.NodePort = in.NodePort
return nil
}

View File

@ -1085,6 +1085,10 @@ type ServicePort struct {
// target Pod's container ports. If this is not specified, the value
// of Port is used (an identity map).
TargetPort util.IntOrString `json:"targetPort,omitempty" description:"the port to access on the pods targeted by the service; defaults to the service port"`
// The port on each node on which this service is exposed.
// Default is to auto-allocate a port if the visibility of this Service requires one.
NodePort int `json:"nodePort" description:"the port on each node on which this service is exposed"`
}
// Service is a named abstraction of software service (for example, mysql) consisting of local port

View File

@ -1086,6 +1086,28 @@ func ValidateService(service *api.Service) errs.ValidationErrorList {
}
}
// Check for duplicate NodePorts, considering (protocol,port) pairs
nodePorts := make(map[api.ServicePort]bool)
for i := range service.Spec.Ports {
port := &service.Spec.Ports[i]
if port.NodePort == 0 {
continue
}
var key api.ServicePort
key.Protocol = port.Protocol
key.NodePort = port.NodePort
_, found := nodePorts[key]
if found {
allErrs = append(allErrs, errs.NewFieldInvalid("spec.ports", *port, "duplicate nodePort specified"))
}
nodePorts[key] = true
}
// Temporary validation to prevent people creating NodePorts before we have the full infrastructure in place
if len(nodePorts) > 0 {
allErrs = append(allErrs, errs.NewFieldInvalid("spec.ports", service.Spec.Ports[0], "nodePorts not (yet) enabled"))
}
return allErrs
}

View File

@ -1720,6 +1720,22 @@ func TestValidateService(t *testing.T) {
},
numErrs: 0,
},
{
name: "duplicate nodeports",
tweakSvc: func(s *api.Service) {
s.Spec.Ports = append(s.Spec.Ports, api.ServicePort{Name: "q", Port: 1, Protocol: "TCP", NodePort: 1})
s.Spec.Ports = append(s.Spec.Ports, api.ServicePort{Name: "r", Port: 2, Protocol: "TCP", NodePort: 1})
},
numErrs: 2, // TODO(justinsb): change to 1 when NodePorts enabled
},
{
name: "duplicate nodeports (different protocols)",
tweakSvc: func(s *api.Service) {
s.Spec.Ports = append(s.Spec.Ports, api.ServicePort{Name: "q", Port: 1, Protocol: "TCP", NodePort: 1})
s.Spec.Ports = append(s.Spec.Ports, api.ServicePort{Name: "r", Port: 2, Protocol: "UDP", NodePort: 1})
},
numErrs: 1, // TODO(justinsb): change to 0 when NodePorts enabled
},
}
for _, tc := range testCases {