Struct podman_api_stubs::models::InspectPodInfraConfig
source · [−]pub struct InspectPodInfraConfig {Show 14 fields
pub dns_option: Option<Vec<String>>,
pub dns_search: Option<Vec<String>>,
pub dns_server: Option<Vec<String>>,
pub host_add: Option<Vec<String>>,
pub host_network: Option<bool>,
pub network_options: Option<HashMap<String, Vec<String>>>,
pub networks: Option<Vec<String>>,
pub no_manage_hosts: Option<bool>,
pub no_manage_resolv_conf: Option<bool>,
pub port_bindings: Option<HashMap<String, Vec<InspectHostPort>>>,
pub static_ip: Option<Ip>,
pub static_mac: Option<String>,
pub pid_ns: Option<String>,
pub userns: Option<String>,
}
Expand description
InspectPodInfraConfig contains the configuration of the pod’s infra container.
Fields
dns_option: Option<Vec<String>>
DNSOption is a set of DNS options that will be used by the infra container’s resolv.conf and shared with the remainder of the pod.
dns_search: Option<Vec<String>>
DNSSearch is a set of DNS search domains that will be used by the infra container’s resolv.conf and shared with the remainder of the pod.
dns_server: Option<Vec<String>>
DNSServer is a set of DNS Servers that will be used by the infra container’s resolv.conf and shared with the remainder of the pod.
host_add: Option<Vec<String>>
HostAdd adds a number of hosts to the infra container’s resolv.conf which will be shared with the rest of the pod.
host_network: Option<bool>
HostNetwork is whether the infra container (and thus the whole pod) will use the host’s network and not create a network namespace.
network_options: Option<HashMap<String, Vec<String>>>
NetworkOptions are additional options for each network
networks: Option<Vec<String>>
Networks is a list of CNI networks the pod will join.
no_manage_hosts: Option<bool>
NoManageHosts indicates that the pod will not manage /etc/hosts and instead each container will handle their own.
no_manage_resolv_conf: Option<bool>
NoManageResolvConf indicates that the pod will not manage resolv.conf and instead each container will handle their own.
port_bindings: Option<HashMap<String, Vec<InspectHostPort>>>
PortBindings are ports that will be forwarded to the infra container and then shared with the pod.
static_ip: Option<Ip>
static_mac: Option<String>
StaticMAC is a static MAC address that will be assigned to the infra container and then used by the pod.
pid_ns: Option<String>
Pid is the PID namespace mode of the pod’s infra container
userns: Option<String>
UserNS is the usernamespace that all the containers in the pod will join.
Trait Implementations
sourceimpl Clone for InspectPodInfraConfig
impl Clone for InspectPodInfraConfig
sourcefn clone(&self) -> InspectPodInfraConfig
fn clone(&self) -> InspectPodInfraConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InspectPodInfraConfig
impl Debug for InspectPodInfraConfig
sourceimpl<'de> Deserialize<'de> for InspectPodInfraConfig
impl<'de> Deserialize<'de> for InspectPodInfraConfig
sourcefn 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
sourceimpl PartialEq<InspectPodInfraConfig> for InspectPodInfraConfig
impl PartialEq<InspectPodInfraConfig> for InspectPodInfraConfig
sourcefn eq(&self, other: &InspectPodInfraConfig) -> bool
fn eq(&self, other: &InspectPodInfraConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InspectPodInfraConfig) -> bool
fn ne(&self, other: &InspectPodInfraConfig) -> bool
This method tests for !=
.
sourceimpl Serialize for InspectPodInfraConfig
impl Serialize for InspectPodInfraConfig
impl StructuralPartialEq for InspectPodInfraConfig
Auto Trait Implementations
impl RefUnwindSafe for InspectPodInfraConfig
impl Send for InspectPodInfraConfig
impl Sync for InspectPodInfraConfig
impl Unpin for InspectPodInfraConfig
impl UnwindSafe for InspectPodInfraConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more