Struct k8s_openapi::api::extensions::v1beta1::NetworkPolicySpec [−][src]
pub struct NetworkPolicySpec { pub egress: Option<Vec<NetworkPolicyEgressRule>>, pub ingress: Option<Vec<NetworkPolicyIngressRule>>, pub pod_selector: LabelSelector, pub policy_types: Option<Vec<String>>, }
Expand description
DEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec.
Fields
egress: Option<Vec<NetworkPolicyEgressRule>>
List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8
ingress: Option<Vec<NetworkPolicyIngressRule>>
List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod OR if the traffic source is the pod’s local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default).
pod_selector: LabelSelector
Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.
policy_types: Option<Vec<String>>
List of rule types that the NetworkPolicy relates to. Valid options are “Ingress”, “Egress”, or “Ingress,Egress”. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ “Egress” ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include “Egress” (since such a policy would not include an Egress section and would otherwise default to just [ “Ingress” ]). This field is beta-level in 1.8
Trait Implementations
impl Clone for NetworkPolicySpec
[src]
impl Clone for NetworkPolicySpec
[src]fn clone(&self) -> NetworkPolicySpec
[src]
fn clone(&self) -> NetworkPolicySpec
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for NetworkPolicySpec
[src]
impl Debug for NetworkPolicySpec
[src]impl Default for NetworkPolicySpec
[src]
impl Default for NetworkPolicySpec
[src]fn default() -> NetworkPolicySpec
[src]
fn default() -> NetworkPolicySpec
[src]Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for NetworkPolicySpec
[src]
impl<'de> Deserialize<'de> for NetworkPolicySpec
[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<NetworkPolicySpec> for NetworkPolicySpec
[src]
impl PartialEq<NetworkPolicySpec> for NetworkPolicySpec
[src]fn eq(&self, other: &NetworkPolicySpec) -> bool
[src]
fn eq(&self, other: &NetworkPolicySpec) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &NetworkPolicySpec) -> bool
[src]
fn ne(&self, other: &NetworkPolicySpec) -> bool
[src]This method tests for !=
.
impl Serialize for NetworkPolicySpec
[src]
impl Serialize for NetworkPolicySpec
[src]impl StructuralPartialEq for NetworkPolicySpec
[src]
Auto Trait Implementations
impl RefUnwindSafe for NetworkPolicySpec
impl Send for NetworkPolicySpec
impl Sync for NetworkPolicySpec
impl Unpin for NetworkPolicySpec
impl UnwindSafe for NetworkPolicySpec
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,