Class V1NetworkPolicySpec
java.lang.Object
io.kubernetes.client.openapi.models.V1NetworkPolicySpec
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
date="2022-12-05T08:14:34.919Z[Etc/UTC]")
public class V1NetworkPolicySpec
extends Object
NetworkPolicySpec provides the specification of a NetworkPolicy
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddEgressItem
(V1NetworkPolicyEgressRule egressItem) addIngressItem
(V1NetworkPolicyIngressRule ingressItem) addPolicyTypesItem
(String policyTypesItem) egress
(List<V1NetworkPolicyEgressRule> egress) boolean
List of egress rules to be applied to the selected pods.List of ingress rules to be applied to the selected pods.Get podSelectorList of rule types that the NetworkPolicy relates to.int
hashCode()
ingress
(List<V1NetworkPolicyIngressRule> ingress) podSelector
(V1LabelSelector podSelector) policyTypes
(List<String> policyTypes) void
setEgress
(List<V1NetworkPolicyEgressRule> egress) void
setIngress
(List<V1NetworkPolicyIngressRule> ingress) void
setPodSelector
(V1LabelSelector podSelector) void
setPolicyTypes
(List<String> policyTypes) toString()
-
Field Details
-
SERIALIZED_NAME_EGRESS
- See Also:
-
SERIALIZED_NAME_INGRESS
- See Also:
-
SERIALIZED_NAME_POD_SELECTOR
- See Also:
-
SERIALIZED_NAME_POLICY_TYPES
- See Also:
-
-
Constructor Details
-
V1NetworkPolicySpec
public V1NetworkPolicySpec()
-
-
Method Details
-
egress
-
addEgressItem
-
getEgress
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- Returns:
- egress
-
setEgress
-
ingress
-
addIngressItem
-
getIngress
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)- Returns:
- ingress
-
setIngress
-
podSelector
-
getPodSelector
Get podSelector- Returns:
- podSelector
-
setPodSelector
-
policyTypes
-
addPolicyTypesItem
-
getPolicyTypes
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- Returns:
- policyTypes
-
setPolicyTypes
-
equals
-
hashCode
public int hashCode() -
toString
-