Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 1.9 KB

V1ServicePort.md

File metadata and controls

15 lines (11 loc) · 1.9 KB

V1ServicePort

ServicePort contains information on service's port.

Properties

Name Type Description Notes
name str The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service. [optional]
node_port int The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport [optional]
port int The port that will be exposed by this service.
protocol str The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP. [optional]
target_port object Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service [optional]

[Back to Model list] [Back to API list] [Back to README]