Class NetworkPolicySpec
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.extensions.NetworkPolicySpec
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<NetworkPolicySpecBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class NetworkPolicySpec extends Object implements io.fabric8.kubernetes.api.builder.Editable<NetworkPolicySpecBuilder>, io.fabric8.kubernetes.api.model.KubernetesResourceDEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NetworkPolicySpec()No args constructor for use in serializationNetworkPolicySpec(List<NetworkPolicyEgressRule> egress, List<NetworkPolicyIngressRule> ingress, io.fabric8.kubernetes.api.model.LabelSelector podSelector, List<String> policyTypes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NetworkPolicySpecBuilderedit()Map<String,Object>getAdditionalProperties()List<NetworkPolicyEgressRule>getEgress()List of egress rules to be applied to the selected pods.List<NetworkPolicyIngressRule>getIngress()List of ingress rules to be applied to the selected pods.io.fabric8.kubernetes.api.model.LabelSelectorgetPodSelector()DEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec.List<String>getPolicyTypes()List of rule types that the NetworkPolicy relates to.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetEgress(List<NetworkPolicyEgressRule> egress)List of egress rules to be applied to the selected pods.voidsetIngress(List<NetworkPolicyIngressRule> ingress)List of ingress rules to be applied to the selected pods.voidsetPodSelector(io.fabric8.kubernetes.api.model.LabelSelector podSelector)DEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec.voidsetPolicyTypes(List<String> policyTypes)List of rule types that the NetworkPolicy relates to.NetworkPolicySpecBuildertoBuilder()
-
-
-
Constructor Detail
-
NetworkPolicySpec
public NetworkPolicySpec()
No args constructor for use in serialization
-
NetworkPolicySpec
public NetworkPolicySpec(List<NetworkPolicyEgressRule> egress, List<NetworkPolicyIngressRule> ingress, io.fabric8.kubernetes.api.model.LabelSelector podSelector, List<String> policyTypes)
-
-
Method Detail
-
getEgress
public List<NetworkPolicyEgressRule> 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
-
setEgress
public void setEgress(List<NetworkPolicyEgressRule> egress)
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
-
getIngress
public List<NetworkPolicyIngressRule> 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 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).
-
setIngress
public void setIngress(List<NetworkPolicyIngressRule> ingress)
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).
-
getPodSelector
public io.fabric8.kubernetes.api.model.LabelSelector getPodSelector()
DEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec.
-
setPodSelector
public void setPodSelector(io.fabric8.kubernetes.api.model.LabelSelector podSelector)
DEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec.
-
getPolicyTypes
public List<String> 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
-
setPolicyTypes
public void setPolicyTypes(List<String> policyTypes)
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
-
edit
public NetworkPolicySpecBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<NetworkPolicySpecBuilder>
-
toBuilder
public NetworkPolicySpecBuilder toBuilder()
-
-