Struct k8s_openapi::api::networking::v1::IngressRule
source · pub struct IngressRule {
pub host: Option<String>,
pub http: Option<HTTPIngressRuleValue>,
}
Expand description
IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.
Fields§
§host: Option<String>
Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the “host” part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to
the IP in the Spec of the parent Ingress.
2. The :
delimiter is not respected because ports are not allowed.
Currently the port of an Ingress is implicitly :80 for http and
:443 for https.
Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.
Host can be “precise” which is a domain name without the terminating dot of a network host (e.g. “foo.bar.com”) or “wildcard”, which is a domain name prefixed with a single wildcard label (e.g. “.foo.com”). The wildcard character ‘’ must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == “*”). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.
http: Option<HTTPIngressRuleValue>
Trait Implementations§
source§impl Clone for IngressRule
impl Clone for IngressRule
source§fn clone(&self) -> IngressRule
fn clone(&self) -> IngressRule
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for IngressRule
impl Debug for IngressRule
source§impl DeepMerge for IngressRule
impl DeepMerge for IngressRule
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.source§impl Default for IngressRule
impl Default for IngressRule
source§fn default() -> IngressRule
fn default() -> IngressRule
source§impl<'de> Deserialize<'de> for IngressRule
impl<'de> Deserialize<'de> for IngressRule
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
source§impl PartialEq<IngressRule> for IngressRule
impl PartialEq<IngressRule> for IngressRule
source§fn eq(&self, other: &IngressRule) -> bool
fn eq(&self, other: &IngressRule) -> bool
self
and other
values to be equal, and is used
by ==
.