Struct k8s_openapi_ext::corev1::EndpointSubset
source · [−]pub struct EndpointSubset {
pub addresses: Option<Vec<EndpointAddress, Global>>,
pub not_ready_addresses: Option<Vec<EndpointAddress, Global>>,
pub ports: Option<Vec<EndpointPort, Global>>,
}
Expand description
EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: { Addresses: [{“ip”: “10.10.1.1”}, {“ip”: “10.10.2.2”}], Ports: [{“name”: “a”, “port”: 8675}, {“name”: “b”, “port”: 309}] } The resulting set of endpoints can be viewed as: a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], b: [ 10.10.1.1:309, 10.10.2.2:309 ]
Fields
addresses: Option<Vec<EndpointAddress, Global>>
IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.
not_ready_addresses: Option<Vec<EndpointAddress, Global>>
IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.
ports: Option<Vec<EndpointPort, Global>>
Port numbers available on the related IP addresses.
Trait Implementations
sourceimpl Clone for EndpointSubset
impl Clone for EndpointSubset
sourcefn clone(&self) -> EndpointSubset
fn clone(&self) -> EndpointSubset
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for EndpointSubset
impl Debug for EndpointSubset
sourceimpl DeepMerge for EndpointSubset
impl DeepMerge for EndpointSubset
sourcefn merge_from(&mut self, other: EndpointSubset)
fn merge_from(&mut self, other: EndpointSubset)
other
into self
.