Struct k8s_openapi::api::core::v1::PodDNSConfig
source · pub struct PodDNSConfig {
pub nameservers: Option<Vec<String>>,
pub options: Option<Vec<PodDNSConfigOption>>,
pub searches: Option<Vec<String>>,
}
Expand description
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
Fields§
§nameservers: Option<Vec<String>>
A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.
options: Option<Vec<PodDNSConfigOption>>
A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.
searches: Option<Vec<String>>
A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.
Trait Implementations§
source§impl Clone for PodDNSConfig
impl Clone for PodDNSConfig
source§fn clone(&self) -> PodDNSConfig
fn clone(&self) -> PodDNSConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PodDNSConfig
impl Debug for PodDNSConfig
source§impl DeepMerge for PodDNSConfig
impl DeepMerge for PodDNSConfig
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for PodDNSConfig
impl Default for PodDNSConfig
source§fn default() -> PodDNSConfig
fn default() -> PodDNSConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PodDNSConfig
impl<'de> Deserialize<'de> for PodDNSConfig
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<PodDNSConfig> for PodDNSConfig
impl PartialEq<PodDNSConfig> for PodDNSConfig
source§fn eq(&self, other: &PodDNSConfig) -> bool
fn eq(&self, other: &PodDNSConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.