Struct k8s_openapi::v1_11::api::networking::v1::NetworkPolicyEgressRule[][src]

pub struct NetworkPolicyEgressRule {
    pub ports: Option<Vec<NetworkPolicyPort>>,
    pub to: Option<Vec<NetworkPolicyPeer>>,
}

NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8

Fields

List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.

List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.

Trait Implementations

impl Clone for NetworkPolicyEgressRule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NetworkPolicyEgressRule
[src]

Formats the value using the given formatter. Read more

impl Default for NetworkPolicyEgressRule
[src]

Returns the "default value" for a type. Read more

impl PartialEq for NetworkPolicyEgressRule
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for NetworkPolicyEgressRule
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for NetworkPolicyEgressRule
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations