Struct k8s_openapi::api::core::v1::ServicePort [−][src]
pub struct ServicePort { pub name: Option<String>, pub node_port: Option<i32>, pub port: i32, pub protocol: Option<String>, pub target_port: Option<IntOrString>, }
Expand description
ServicePort contains information on service’s port.
Fields
name: Option<String>
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.
node_port: Option<i32>
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
port: i32
The port that will be exposed by this service.
protocol: Option<String>
The IP protocol for this port. Supports “TCP”, “UDP”, and “SCTP”. Default is TCP.
target_port: Option<IntOrString>
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
Trait Implementations
impl Clone for ServicePort
[src]
impl Clone for ServicePort
[src]fn clone(&self) -> ServicePort
[src]
fn clone(&self) -> ServicePort
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for ServicePort
[src]
impl Debug for ServicePort
[src]impl Default for ServicePort
[src]
impl Default for ServicePort
[src]fn default() -> ServicePort
[src]
fn default() -> ServicePort
[src]Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for ServicePort
[src]
impl<'de> Deserialize<'de> for ServicePort
[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<ServicePort> for ServicePort
[src]
impl PartialEq<ServicePort> for ServicePort
[src]fn eq(&self, other: &ServicePort) -> bool
[src]
fn eq(&self, other: &ServicePort) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &ServicePort) -> bool
[src]
fn ne(&self, other: &ServicePort) -> bool
[src]This method tests for !=
.
impl Serialize for ServicePort
[src]
impl Serialize for ServicePort
[src]impl StructuralPartialEq for ServicePort
[src]
Auto Trait Implementations
impl RefUnwindSafe for ServicePort
impl Send for ServicePort
impl Sync for ServicePort
impl Unpin for ServicePort
impl UnwindSafe for ServicePort
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,