Show / Hide Table of Contents

Class V1NetworkPolicySpec

NetworkPolicySpec provides the specification of a NetworkPolicy

Inheritance
object
V1NetworkPolicySpec
Implements
IEquatable<V1NetworkPolicySpec>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1NetworkPolicySpec : IEquatable<V1NetworkPolicySpec>

Constructors

View Source

V1NetworkPolicySpec()

Declaration
public V1NetworkPolicySpec()
View Source

V1NetworkPolicySpec(V1NetworkPolicySpec)

Declaration
protected V1NetworkPolicySpec(V1NetworkPolicySpec original)
Parameters
Type Name Description
V1NetworkPolicySpec original

Properties

View Source

Egress

egress is a 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

Declaration
[JsonPropertyName("egress")]
public IList<V1NetworkPolicyEgressRule> Egress { get; set; }
Property Value
Type Description
IList<V1NetworkPolicyEgressRule>
View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
View Source

Ingress

ingress is a 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 (and cluster policy otherwise allows the traffic), 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)

Declaration
[JsonPropertyName("ingress")]
public IList<V1NetworkPolicyIngressRule> Ingress { get; set; }
Property Value
Type Description
IList<V1NetworkPolicyIngressRule>
View Source

PodSelector

podSelector selects the pods to which this NetworkPolicy object applies. The array of rules is applied to any pods selected by this field. An empty selector matches all pods in the policy's namespace. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is optional. If it is not specified, it defaults to an empty selector.

Declaration
[JsonPropertyName("podSelector")]
public V1LabelSelector PodSelector { get; set; }
Property Value
Type Description
V1LabelSelector
View Source

PolicyTypes

policyTypes is a 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

Declaration
[JsonPropertyName("policyTypes")]
public IList<string> PolicyTypes { get; set; }
Property Value
Type Description
IList<string>

Methods

View Source

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)
View Source

Equals(V1NetworkPolicySpec?)

Declaration
public virtual bool Equals(V1NetworkPolicySpec? other)
Parameters
Type Name Description
V1NetworkPolicySpec other
Returns
Type Description
bool
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()
View Source

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

View Source

operator ==(V1NetworkPolicySpec?, V1NetworkPolicySpec?)

Declaration
public static bool operator ==(V1NetworkPolicySpec? left, V1NetworkPolicySpec? right)
Parameters
Type Name Description
V1NetworkPolicySpec left
V1NetworkPolicySpec right
Returns
Type Description
bool
View Source

operator !=(V1NetworkPolicySpec?, V1NetworkPolicySpec?)

Declaration
public static bool operator !=(V1NetworkPolicySpec? left, V1NetworkPolicySpec? right)
Parameters
Type Name Description
V1NetworkPolicySpec left
V1NetworkPolicySpec right
Returns
Type Description
bool

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX