public static interface V1.ServicePortOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getName()
The name of this port within the service.
|
com.google.protobuf.ByteString |
getNameBytes()
The name of this port within the service.
|
int |
getNodePort()
The port on each node on which this service is exposed when type=NodePort or LoadBalancer.
|
int |
getPort()
The port that will be exposed by this service.
|
String |
getProtocol()
The IP protocol for this port.
|
com.google.protobuf.ByteString |
getProtocolBytes()
The IP protocol for this port.
|
IntStr.IntOrString |
getTargetPort()
Number or name of the port to access on the pods targeted by the service.
|
IntStr.IntOrStringOrBuilder |
getTargetPortOrBuilder()
Number or name of the port to access on the pods targeted by the service.
|
boolean |
hasName()
The name of this port within the service.
|
boolean |
hasNodePort()
The port on each node on which this service is exposed when type=NodePort or LoadBalancer.
|
boolean |
hasPort()
The port that will be exposed by this service.
|
boolean |
hasProtocol()
The IP protocol for this port.
|
boolean |
hasTargetPort()
Number or name of the port to access on the pods targeted by the service.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasName()
The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service. +optional
optional string name = 1;
String getName()
The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service. +optional
optional string name = 1;
com.google.protobuf.ByteString getNameBytes()
The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service. +optional
optional string name = 1;
boolean hasProtocol()
The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP. +optional
optional string protocol = 2;
String getProtocol()
The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP. +optional
optional string protocol = 2;
com.google.protobuf.ByteString getProtocolBytes()
The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP. +optional
optional string protocol = 2;
boolean hasPort()
The port that will be exposed by this service.
optional int32 port = 3;
int getPort()
The port that will be exposed by this service.
optional int32 port = 3;
boolean hasTargetPort()
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
optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString targetPort = 4;
IntStr.IntOrString getTargetPort()
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
optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString targetPort = 4;
IntStr.IntOrStringOrBuilder getTargetPortOrBuilder()
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
optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString targetPort = 4;
boolean hasNodePort()
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
optional int32 nodePort = 5;
int getNodePort()
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
optional int32 nodePort = 5;
Copyright © 2021. All rights reserved.